[vlc-commits] qt: Add missing emit
Hugo Beauzée-Luyssen
git at videolan.org
Tue Jan 31 10:12:48 CET 2017
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Mon Jan 30 17:40:38 2017 +0100| [ba81d2c9e191e669fbcdceba5b04fa4977d6c697] | committer: Hugo Beauzée-Luyssen
qt: Add missing emit
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ba81d2c9e191e669fbcdceba5b04fa4977d6c697
---
modules/gui/qt/components/controller.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/qt/components/controller.cpp b/modules/gui/qt/components/controller.cpp
index b6efc66..2c5e845 100644
--- a/modules/gui/qt/components/controller.cpp
+++ b/modules/gui/qt/components/controller.cpp
@@ -1189,7 +1189,7 @@ void FullscreenControllerWidget::setVoutList( vout_thread_t **pp_vout, int i_vou
var_AddCallback( p_vout, "fullscreen",
FullscreenControllerWidget::FullscreenChanged, this );
/* I miss a add and fire */
- fullscreenChanged( p_vout, var_GetBool( THEPL, "fullscreen" ),
+ emit fullscreenChanged( p_vout, var_GetBool( THEPL, "fullscreen" ),
var_GetInteger( p_vout, "mouse-hide-timeout" ) );
vlc_mutex_unlock( &lock );
}
More information about the vlc-commits
mailing list