From: Jean-Baptiste Kempf Date: Sat, 8 Sep 2007 17:24:18 +0000 (+0000) Subject: Qt4 - Menu: inconstency, reattach interfaces to tools menu. Trax#44 X-Git-Tag: 0.9.0-test0~5755 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=1a0b767961db34bdaa45c567370deeba5f00e003;p=vlc Qt4 - Menu: inconstency, reattach interfaces to tools menu. Trax#44 --- diff --git a/modules/gui/qt4/menus.cpp b/modules/gui/qt4/menus.cpp index 021088d283..66eed7ee19 100644 --- a/modules/gui/qt4/menus.cpp +++ b/modules/gui/qt4/menus.cpp @@ -499,11 +499,7 @@ QMenu *QVLCMenu::HelpMenu() MIM_SADD( menu, qtr( "Next" ), "", ":/pixmaps/vlc_next_16px.png", next() ); #define POPUP_STATIC_ENTRIES( menu ) \ - QMenu *intfmenu = InterfacesMenu( p_intf, NULL ); \ - intfmenu->setTitle( qtr( "Interfaces" ) ); \ - menu->addMenu( intfmenu ); \ - \ - QMenu *toolsmenu = ToolsMenu( p_intf, NULL, false, false ); \ + QMenu *toolsmenu = ToolsMenu( p_intf, NULL, false, true ); \ toolsmenu->setTitle( qtr( "Tools" ) ); \ menu->addMenu( toolsmenu ); \ \