Show
Ignore:
Timestamp:
14/04/08 02:02:22 (8 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1208131342 +0200
git-parent:

[05eac2dbdf9f3a3231dc2eefda62202837fdeec6]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1208124509 +0200
Message:

Replace vlc_bool_t by bool, VLC_TRUE by true and VLC_FALSE by false.

This improves readability a lot and prevent us from reinventing the wheel.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/control/hierarchical_node_media_list_view.c

    r313a874 r449fd28  
    154154} 
    155155 
    156 static vlc_bool_t 
     156static bool 
    157157item_is_already_added( libvlc_media_t * p_md ) 
    158158{ 
     
    160160 
    161161    p_submlist = libvlc_media_subitems( p_md, NULL ); 
    162     if( !p_submlist ) return VLC_FALSE
     162    if( !p_submlist ) return false
    163163    int count = libvlc_media_list_count( p_submlist, NULL ); 
    164164    libvlc_media_list_release( p_submlist );