[vlc-commits] Qt: simplify
Jean-Baptiste Kempf
git at videolan.org
Wed May 25 11:05:50 CEST 2011
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed May 25 11:05:36 2011 +0200| [975477f71e98bfb5baf5a51240adfff6254b45a9] | committer: Jean-Baptiste Kempf
Qt: simplify
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=975477f71e98bfb5baf5a51240adfff6254b45a9
---
modules/gui/qt4/main_interface.cpp | 5 +----
modules/gui/qt4/main_interface.hpp | 1 -
2 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp
index 8705699..a4161e1 100644
--- a/modules/gui/qt4/main_interface.cpp
+++ b/modules/gui/qt4/main_interface.cpp
@@ -209,7 +209,6 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
/* VideoWidget connects for asynchronous calls */
b_videoFullScreen = false;
- b_videoOnTop = false;
connect( this, SIGNAL(askGetVideo(WId*,int*,int*,unsigned*,unsigned *)),
this, SLOT(getVideoSlot(WId*,int*,int*,unsigned*,unsigned*)),
Qt::BlockingQueuedConnection );
@@ -676,11 +675,9 @@ void MainInterface::setVideoFullScreen( bool fs )
* Emit askVideoOnTop() to invoke this from other thread. */
void MainInterface::setVideoOnTop( bool on_top )
{
- b_videoOnTop = on_top;
-
Qt::WindowFlags oldflags = windowFlags(), newflags;
- if( b_videoOnTop )
+ if( on_top )
newflags = oldflags | Qt::WindowStaysOnTopHint;
else
newflags = oldflags & ~Qt::WindowStaysOnTopHint;
diff --git a/modules/gui/qt4/main_interface.hpp b/modules/gui/qt4/main_interface.hpp
index 2c24fb7..aed2b1e 100644
--- a/modules/gui/qt4/main_interface.hpp
+++ b/modules/gui/qt4/main_interface.hpp
@@ -158,7 +158,6 @@ private:
bool b_autoresize; ///< persistent resizable window
bool b_videoEmbedded; ///< Want an external Video Window
bool b_videoFullScreen; ///< --fullscreen
- bool b_videoOnTop; ///< --video-on-top
bool b_hideAfterCreation;
bool b_minimalView; ///< Minimal video
bool b_interfaceFullScreen;
More information about the vlc-commits
mailing list