From a1494ddee7f9caed23c2c9a980a4af2eccbf8db9 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Tue, 6 Jun 2000 14:29:58 +0000 Subject: [PATCH] let kDebug2kdDebug run over kdebase after making it clever enough not to commit everything. Removed a cerr debugging in ldap - looks familiar mhk ;) svn path=/trunk/kdebase/kcontrol/; revision=52323 --- client.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/client.cpp b/client.cpp index 746420aee3..c45f31282c 100644 --- a/client.cpp +++ b/client.cpp @@ -2002,15 +2002,13 @@ void Client::updateAvoidPolicy() if ( XTextPropertyToStringList( &avoidProp, &avoidList, &avoidListCount) == 0 ) { - qDebug("kwin: Client::updateAvoidPolicy: " - "XTextPropertyToStringList failed"); + kdDebug() << "kwin: Client::updateAvoidPolicy: " << endl; return; } // Must be one value only in string list. if (avoidListCount != 1) { - qDebug( "kwin: Client::updateAvoidPolicy(): " - "Avoid list value count incorrect"); + kdDebug() << "kwin: Client::updateAvoidPolicy(): " << endl; return; }