]> git.sesse.net Git - vlc/commitdiff
Qt: don't spam the log with too many debug messages...
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 16 Feb 2009 07:27:31 +0000 (08:27 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 16 Feb 2009 07:27:31 +0000 (08:27 +0100)
This doesn't solve the fact that ItemChanged_Type is called WAY too often... Fenrir, ILEoo, ideas?

modules/gui/qt4/input_manager.cpp

index 47ff756ec20b1714d7abc17878a6038e67c0ace3..ff50671a184d54bfd570f16f7f5b2472a7edce0e 100644 (file)
@@ -150,7 +150,8 @@ void InputManager::customEvent( QEvent *event )
 
 #ifndef NDEBUG
     if( i_type != PositionUpdate_Type &&
-        i_type != StatisticsUpdate_Type )
+        i_type != StatisticsUpdate_Type &&
+        i_type != ItemChanged_Type )
         msg_Dbg( p_intf, "New Event: type %i", i_type );
 #endif