From 4dabc236c82b3c2f2917c389350cdd48cc875503 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Tue, 17 Feb 2004 17:17:06 +0000 Subject: [PATCH] Use debug area. svn path=/trunk/kdebase/kwin/; revision=288752 --- activation.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/activation.cpp b/activation.cpp index a3b87a74c0..25471c1dba 100644 --- a/activation.cpp +++ b/activation.cpp @@ -458,7 +458,7 @@ bool Workspace::allowClientActivation( const Client* c, Time time, bool focus_in return !was_user_interaction; // see Client::readUserTimeMapTimestamp() else { - kdDebug() << "Activation: No timestamp at all" << endl; + kdDebug( 1212 ) << "Activation: No timestamp at all" << endl; if( options->focusStealingPreventionLevel == 1 ) // low return true; // no timestamp at all, don't activate - because there's also creation timestamp @@ -506,12 +506,12 @@ bool Workspace::allowFullClientRaising( const Client* c ) return false; if( !c->hasUserTimeSupport()) { - kdDebug() << "Raising: No support" << endl; + kdDebug( 1212 ) << "Raising: No support" << endl; if( options->focusStealingPreventionLevel == 1 ) // low return true; } // options->focusStealingPreventionLevel == 2 // normal - kdDebug() << "Raising: Refusing" << endl; + kdDebug( 1212 ) << "Raising: Refusing" << endl; return false; }