vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Tue Sep 7 15:10:25 2010 +0200| [f2c03da6c61887c6e7bcd45f6702a0498fbea953] | committer: Jean-Baptiste Kempf
Qt: document MinimalView functions > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f2c03da6c61887c6e7bcd45f6702a0498fbea953 --- modules/gui/qt4/main_interface.cpp | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp index 5711dd2..a308ff4 100644 --- a/modules/gui/qt4/main_interface.cpp +++ b/modules/gui/qt4/main_interface.cpp @@ -782,6 +782,10 @@ void MainInterface::dockPlaylist( bool p_docked ) playlistVisible = true; } +/* + * setMinimalView is the private function used by + * the SLOT toggleMinimalView and setVideoFullScreen + */ void MainInterface::setMinimalView( bool b_minimal ) { menuBar()->setVisible( !b_minimal ); @@ -791,7 +795,9 @@ void MainInterface::setMinimalView( bool b_minimal ) } /* - If b_minimal is false, then we are normalView + * This public SLOT is used for moving to minimal View Mode + * + * If b_minimal is false, then we are normalView */ void MainInterface::toggleMinimalView( bool b_minimal ) { _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
