[vlc-devel] commit: Qt: don't spam the log with too many debug messages... ( Jean-Baptiste Kempf )
git version control
git at videolan.org
Mon Feb 16 08:28:40 CET 2009
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Feb 16 08:27:31 2009 +0100| [ff9c8ae1c3c8b0f4bf9b245c5889b3101d748cae] | committer: Jean-Baptiste Kempf
Qt: don't spam the log with too many debug messages...
This doesn't solve the fact that ItemChanged_Type is called WAY too often... Fenrir, ILEoo, ideas?
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ff9c8ae1c3c8b0f4bf9b245c5889b3101d748cae
---
modules/gui/qt4/input_manager.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp
index 47ff756..ff50671 100644
--- a/modules/gui/qt4/input_manager.cpp
+++ b/modules/gui/qt4/input_manager.cpp
@@ -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
More information about the vlc-devel
mailing list