From 044fec718656321901e5a92b3dd9aed4389e654e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Wed, 28 Jul 2004 06:59:16 +0000 Subject: [PATCH] Remove some debug output. svn path=/trunk/kdebase/kwin/; revision=333441 --- rules.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/rules.cpp b/rules.cpp index e5c189b287..1a5d1097d3 100644 --- a/rules.cpp +++ b/rules.cpp @@ -149,7 +149,6 @@ void Rules::readFromCfg( KConfig& cfg ) READ_FORCE_RULE( acceptfocus, Bool, ); READ_FORCE_RULE( moveresizemode, , Options::stringToMoveResizeMode ); READ_FORCE_RULE( closeable, Bool, ); - kdDebug() << "READ RULE:" << this << endl; } #undef READ_MATCH_STRING @@ -505,7 +504,6 @@ bool Rules::discardTemporary( bool force ) return false; if( force || --temporary_state == 0 ) // too old { - kdDebug() << "DISCARD:" << this << endl; delete this; return true; } @@ -662,7 +660,7 @@ WindowRules Workspace::findWindowRules( const Client* c, bool ignore_temporary ) if( (*it)->match( c )) { Rules* rule = *it; - kdDebug() << "RULE FOUND:" << rule << ":" << c << endl; + kdDebug( 1212 ) << "Rule found:" << rule << ":" << c << endl; if( rule->isTemporary()) it = rules.remove( it ); else @@ -691,7 +689,6 @@ void Workspace::loadWindowRules() KConfig cfg( "kwinrulesrc", true ); cfg.setGroup( "General" ); int count = cfg.readNumEntry( "count" ); - kdDebug() << "RULES:" << count << endl; for( int i = 1; i <= count; ++i ) @@ -736,7 +733,6 @@ void Workspace::gotTemporaryRulesMessage( const QString& message ) void Workspace::cleanupTemporaryRules() { - kdDebug() << "CLEANUP" << endl; bool has_temporary = false; for( QValueList< Rules* >::Iterator it = rules.begin(); it != rules.end();