[vlc-commits] commit: Qt: fixing message debug to help fixing some issues. ( Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Sat Jun 12 21:38:55 CEST 2010
vlc/vlc-1.1 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Jun 12 21:35:01 2010 +0200| [7206e0cd8281aadc9f83a6125b3cce6c18a87191] | committer: Jean-Baptiste Kempf
Qt: fixing message debug to help fixing some issues.
(cherry picked from commit 0b9fa694707cd5d664e06a951cdfcccc9a236f1a)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=7206e0cd8281aadc9f83a6125b3cce6c18a87191
---
modules/gui/qt4/components/controller.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/components/controller.cpp b/modules/gui/qt4/components/controller.cpp
index 6c87d5e..c995f19 100644
--- a/modules/gui/qt4/components/controller.cpp
+++ b/modules/gui/qt4/components/controller.cpp
@@ -1017,12 +1017,12 @@ void FullscreenControllerWidget::fullscreenChanged( vout_thread_t *p_vout,
bool b_fs, int i_timeout )
{
/* FIXME - multiple vout (ie multiple mouse position ?) and thread safety if multiple vout ? */
- msg_Dbg( p_vout, "Qt: Entering Fullscreen" );
vlc_mutex_lock( &lock );
/* Entering fullscreen, register callback */
if( b_fs && !b_fullscreen )
{
+ msg_Dbg( p_vout, "Qt: Entering Fullscreen" );
b_fullscreen = true;
i_hide_timeout = i_timeout;
var_AddCallback( p_vout, "mouse-moved",
@@ -1031,6 +1031,7 @@ void FullscreenControllerWidget::fullscreenChanged( vout_thread_t *p_vout,
/* Quitting fullscreen, unregistering callback */
else if( !b_fs && b_fullscreen )
{
+ msg_Dbg( p_vout, "Qt: Quitting Fullscreen" );
b_fullscreen = false;
i_hide_timeout = i_timeout;
var_DelCallback( p_vout, "mouse-moved",
More information about the vlc-commits
mailing list