[vlc-commits] Qt: change tools accessor
Jean-Baptiste Kempf
git at videolan.org
Sun Apr 21 17:28:47 CEST 2013
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Apr 21 17:28:32 2013 +0200| [e074efe5efd45f543438f3e3b5d807664c1416d7] | committer: Jean-Baptiste Kempf
Qt: change tools accessor
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e074efe5efd45f543438f3e3b5d807664c1416d7
---
modules/gui/qt4/menus.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/menus.cpp b/modules/gui/qt4/menus.cpp
index f57dc0e..f6626b8 100644
--- a/modules/gui/qt4/menus.cpp
+++ b/modules/gui/qt4/menus.cpp
@@ -322,7 +322,7 @@ void VLCMenuBar::createMenuBar( MainInterface *mi,
BAR_DADD( VideoMenu( p_intf, bar ), qtr( "&Video" ), 2 );
BAR_DADD( SubtitleMenu( p_intf, bar ), qtr( "Subti&tle" ), 5 );
- addMenuToMainbar( ToolsMenu( bar ), qtr( "&Tools" ), bar );
+ addMenuToMainbar( ToolsMenu( bar ), qtr( "T&ools" ), bar );
/* View menu, a bit different */
BAR_DADD( ViewMenu( p_intf, NULL, mi ), qtr( "V&iew" ), 4 );
@@ -1050,7 +1050,7 @@ void VLCMenuBar::PopupMenu( intf_thread_t *p_intf, bool show )
/* Add some special entries for windowed mode: Interface Menu */
if( !b_isFullscreen )
{
- QMenu *submenu = new QMenu( qtr( "Tools" ), menu );
+ QMenu *submenu = new QMenu( qtr( "T&ools" ), menu );
/*QMenu *tools =*/ ToolsMenu( submenu );
submenu->addSeparator();
More information about the vlc-commits
mailing list