]> git.sesse.net Git - vlc/commitdiff
Small menu fix.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 16 Apr 2008 06:18:46 +0000 (23:18 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 16 Apr 2008 06:18:46 +0000 (23:18 -0700)
modules/gui/qt4/menus.cpp

index 62f41e73942ae53f465d8daff36eef64d0a1bb39..0f83f9f9fa0ab2867daae7efd085ff786f2ef596 100644 (file)
@@ -269,7 +269,7 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf,
     if( with_intf )
     {
         QMenu *intfmenu = InterfacesMenu( p_intf, NULL );
-        intfmenu->setTitle( qtr( "Interfaces" ) );
+        intfmenu->setTitle( qtr( "Add Interfaces" ) );
         menu->addMenu( intfmenu );
         menu->addSeparator();
     }
@@ -956,8 +956,7 @@ int QVLCMenu::CreateChoicesMenu( QMenu *submenu, const char *psz_var,
             case VLC_VAR_STRING:
                 var_Get( p_object, psz_var, &val );
                 another_val.psz_string = strdup( CURVAL.psz_string );
-                menutext = qfu( "Add " ) /* If this function is more used, FIX*/
-                         + qfu( CURTEXT ? CURTEXT : another_val.psz_string );
+                menutext = qfu( CURTEXT ? CURTEXT : another_val.psz_string );
                 CreateAndConnect( submenu, psz_var, menutext, "", NORMAL_OR_RADIO,
                         p_object->i_object_id, another_val, i_type,
                         NOTCOMMAND && val.psz_string &&