[vlc-commits] Qt: remove unneeded debug message
    Jean-Baptiste Kempf 
    git at videolan.org
       
    Mon Jan  2 20:14:36 CET 2012
    
    
  
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Jan  2 20:14:14 2012 +0100| [12514465f1df9d5ca0eae86a84b1766f1b70a6e6] | committer: Jean-Baptiste Kempf
Qt: remove unneeded debug message
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=12514465f1df9d5ca0eae86a84b1766f1b70a6e6
---
 modules/gui/qt4/input_manager.cpp |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp
index 9c4e614..485c9b0 100644
--- a/modules/gui/qt4/input_manager.cpp
+++ b/modules/gui/qt4/input_manager.cpp
@@ -424,11 +424,9 @@ void InputManager::UpdateNavigation()
     if( val.i_int > 0 )
     {
         emit titleChanged( true );
-        msg_Dbg( p_intf, "Title %"PRId64, val.i_int );
         /* p_input != NULL since val.i_int != 0 */
         var_Change( p_input, "chapter", VLC_VAR_CHOICESCOUNT, &val2, NULL );
         emit chapterChanged( (val2.i_int > 1) || ( val2.i_int > 0 && val.i_int > 1 ) );
-        msg_Dbg( p_intf, "Chapter: %"PRId64, val2.i_int );
     }
     else
         emit titleChanged( false );
    
    
More information about the vlc-commits
mailing list