]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwidgets/menus.cpp
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / wxwidgets / menus.cpp
index 7a7fa79c9a8c64bf6e80b76933a19ede3e3791d9..5c36511f2c084a7d3a126e6eb6340042052e48fc 100644 (file)
@@ -22,7 +22,7 @@
  *****************************************************************************/
 
 #include <vlc/vlc.h>
-#include <vlc/intf.h>
+#include <vlc_interface.h>
 
 #include "wxwidgets.hpp"
 #include "interface.hpp"
@@ -271,7 +271,7 @@ int IntfAutoMenuBuilder( intf_thread_t *p_intf, ArrayOfInts &ri_objects,
     } \
     else \
     { \
-        if( p_playlist && !playlist_IsEmpty( p_playlist->i_size ) ) \
+        if( p_playlist && !playlist_IsEmpty( p_playlist ) ) \
         { \
             popupmenu.InsertSeparator( 0 ); \
             popupmenu.Insert( 0, Play_Event, wxU(_("Play")) ); \
@@ -648,7 +648,7 @@ static bool IsMenuEmpty( const char *psz_var, vlc_object_t *p_object,
 
     if( (i_type & VLC_VAR_TYPE) != VLC_VAR_VARIABLE )
     {
-        /* Very evil hack ! intf-switch can have only one value */ 
+        /* Very evil hack ! intf-switch can have only one value */
         if( !strcmp( psz_var, "intf-switch" ) ) return FALSE;
         if( val.i_int == 1 && b_root ) return TRUE;
         else return FALSE;