[vlc-devel] commit: Remove ... after "Minimal View" menu item. (Antoine Cellerier )
git version control
git at videolan.org
Mon Aug 25 18:28:10 CEST 2008
vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Mon Aug 25 18:31:48 2008 +0200| [4edf0bbf4d8baf49f27acd3ade9cf73a36739e24] | committer: Antoine Cellerier
Remove ... after "Minimal View" menu item.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4edf0bbf4d8baf49f27acd3ade9cf73a36739e24
---
modules/gui/qt4/menus.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/menus.cpp b/modules/gui/qt4/menus.cpp
index 90dd41f..f52eb8d 100644
--- a/modules/gui/qt4/menus.cpp
+++ b/modules/gui/qt4/menus.cpp
@@ -366,7 +366,7 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf,
if( mi )
{
/* Minimal View */
- QAction *action = menu->addAction( qtr( "Mi&nimal View..." ), mi,
+ QAction *action = menu->addAction( qtr( "Mi&nimal View" ), mi,
SLOT( toggleMinimalView() ), qtr( "Ctrl+H" ) );
action->setCheckable( true );
action->setData( "_static_" );
@@ -843,7 +843,7 @@ void QVLCMenu::PopupMenu( intf_thread_t *p_intf, bool show )
if( mi )
{
action = submenu->addAction( QIcon( "" ),
- qtr( "Minimal View..." ), mi, SLOT( toggleMinimalView() ) );
+ qtr( "Minimal View" ), mi, SLOT( toggleMinimalView() ) );
action->setCheckable( true );
action->setChecked( !( mi->getControlsVisibilityStatus() &
CONTROLS_VISIBLE ) );
More information about the vlc-devel
mailing list