[vlc-commits] commit: Qt: remove unneeded workaround (Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Fri Mar 19 17:51:41 CET 2010
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Mar 19 17:32:26 2010 +0100| [ff995de98721f34871bd9de643d2bb23fc1869f0] | committer: Jean-Baptiste Kempf
Qt: remove unneeded workaround
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ff995de98721f34871bd9de643d2bb23fc1869f0
---
modules/gui/qt4/main_interface.cpp | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp
index 01bbd79..f9684a3 100644
--- a/modules/gui/qt4/main_interface.cpp
+++ b/modules/gui/qt4/main_interface.cpp
@@ -1177,13 +1177,11 @@ void MainInterface::closeEvent( QCloseEvent *e )
THEDP->quit();
}
-void MainInterface::toggleFullScreen( void )
+void MainInterface::toggleFullScreen()
{
if( isFullScreen() )
{
showNormal();
- emit askUpdate(); // Needed if video was launched after the F11
- //FIXMe
emit fullscreenInterfaceToggled( false );
}
else
@@ -1191,7 +1189,6 @@ void MainInterface::toggleFullScreen( void )
showFullScreen();
emit fullscreenInterfaceToggled( true );
}
-
}
/*****************************************************************************
More information about the vlc-commits
mailing list