[vlc-devel] commit: Qt: more debug to find the Chapitre and Titre in Qt4 ( Jean-Baptiste Kempf )

git version control git at videolan.org
Fri Jan 16 16:34:43 CET 2009


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Jan 12 19:03:55 2009 +0100| [5d16db8d2eec80af507b8d64022b589d38ff0069] | committer: Jean-Baptiste Kempf 

Qt: more debug to find the Chapitre and Titre in Qt4

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5d16db8d2eec80af507b8d64022b589d38ff0069
---

 modules/gui/qt4/input_manager.cpp |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp
index 70cd5e7..c1ec98b 100644
--- a/modules/gui/qt4/input_manager.cpp
+++ b/modules/gui/qt4/input_manager.cpp
@@ -384,10 +384,12 @@ void InputManager::UpdateNavigation()
     if( val.i_int > 0 )
     {
         emit titleChanged( true );
+        msg_Dbg( p_intf, "Title %i", val.i_int );
         /* p_input != NULL since val.i_int != 0 */
         val.i_int = 0;
         var_Change( p_input, "chapter", VLC_VAR_CHOICESCOUNT, &val, NULL );
         emit chapterChanged( (val.i_int > 0) );
+        msg_Dbg( p_intf, "Chapter: %i", val.i_int );
     }
     else
         emit titleChanged( false );




More information about the vlc-devel mailing list