]> git.sesse.net Git - vlc/blobdiff - modules/services_discovery/upnp_cc.cpp
Replace vlc_bool_t by bool, VLC_TRUE by true and VLC_FALSE by false.
[vlc] / modules / services_discovery / upnp_cc.cpp
index c9f4594192df50d6fb0b5b6c02b7bd3cb61993f7..ac9a77c0929fd9e9f8d2a7651c36d5d009c7724e 100644 (file)
@@ -220,7 +220,7 @@ void UPnPHandler::AddContent( playlist_item_t *p_parent, ContentNode *node )
         /* FIXME: playlist_AddInput() can fail */
         playlist_BothAddInput( p_playlist, p_input, p_parent,
                                PLAYLIST_APPEND, PLAYLIST_END, NULL, NULL,
-                               VLC_FALSE );
+                               false );
     } else if ( node->isContainerNode() )
     {
         ContainerNode *conNode = (ContainerNode *)node;
@@ -243,7 +243,7 @@ void UPnPHandler::RemoveDevice( Device *dev )
     playlist_item_t *p_item = FindDeviceNode( dev );
 
     if( p_item != NULL )
-        playlist_NodeDelete( p_playlist, p_item, VLC_TRUE, VLC_TRUE );
+        playlist_NodeDelete( p_playlist, p_item, true, true );
 }