]> git.sesse.net Git - vlc/commitdiff
Qt: remove unneeded workaround
authorJean-Baptiste Kempf <jb@videolan.org>
Fri, 19 Mar 2010 16:32:26 +0000 (17:32 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 19 Mar 2010 16:32:26 +0000 (17:32 +0100)
modules/gui/qt4/main_interface.cpp

index 01bbd79afeaab3d2328269ab04d3943a5c17ff9e..f9684a3ab90bb52cbc04899da982e0f8c16210aa 100644 (file)
@@ -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 );
     }
-
 }
 
 /*****************************************************************************