From 3d52b0e4c7f23e3b9cccb558bec8043c73379bf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Wed, 22 Jun 2005 13:28:25 +0000 Subject: [PATCH] kdWarning -> kdDebug svn path=/trunk/KDE/kdebase/kwin/; revision=427951 --- client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.cpp b/client.cpp index d49cc2212b..a6b482a8e3 100644 --- a/client.cpp +++ b/client.cpp @@ -1196,7 +1196,7 @@ void Client::takeActivity( int flags, bool handled, allowed_t ) static Client* previous_client; if( previous_activity_timestamp == qt_x_time && previous_client != this ) { - kdWarning( 1212 ) << "Repeated use of the same X timestamp for activity" << endl; + kdDebug( 1212 ) << "Repeated use of the same X timestamp for activity" << endl; kdDebug( 1212 ) << kdBacktrace() << endl; } previous_activity_timestamp = qt_x_time; @@ -1213,7 +1213,7 @@ void Client::takeFocus( allowed_t ) static Client* previous_client; if( previous_focus_timestamp == qt_x_time && previous_client != this ) { - kdWarning( 1212 ) << "Repeated use of the same X timestamp for focus" << endl; + kdDebug( 1212 ) << "Repeated use of the same X timestamp for focus" << endl; kdDebug( 1212 ) << kdBacktrace() << endl; } previous_focus_timestamp = qt_x_time;