summaryrefslogtreecommitdiffabout
path: root/microkde
authorzautrix <zautrix>2005-04-17 14:37:34 (UTC)
committer zautrix <zautrix>2005-04-17 14:37:34 (UTC)
commit02dc5d8173393d2069951a5f847db5bdf69137f6 (patch) (unidiff)
treea72c700d0072ae0074efabdc5a0563f14fdbadcd /microkde
parentb411ec2d8961d07c3e2e9aefc9e04322b7851859 (diff)
downloadkdepimpi-02dc5d8173393d2069951a5f847db5bdf69137f6.zip
kdepimpi-02dc5d8173393d2069951a5f847db5bdf69137f6.tar.gz
kdepimpi-02dc5d8173393d2069951a5f847db5bdf69137f6.tar.bz2
qdebugcleanup
Diffstat (limited to 'microkde') (more/less context) (ignore whitespace changes)
-rw-r--r--microkde/kconfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/microkde/kconfig.cpp b/microkde/kconfig.cpp
index 9598274..e0b6e99 100644
--- a/microkde/kconfig.cpp
+++ b/microkde/kconfig.cpp
@@ -74,7 +74,7 @@ QValueList<int> KConfig::readIntListEntry( const QString & key)
74 val = (*sit).toInt(&ok); 74 val = (*sit).toInt(&ok);
75 result << val; 75 result << val;
76 if (ok == false) { 76 if (ok == false) {
77 qDebug("KConfig::readIntListEntry str=%s , int=%n:", (*sit).latin1(), &val); 77 //qDebug("KConfig::readIntListEntry str=%s , int=%n:", (*sit).latin1(), &val);
78 ok2 = false; 78 ok2 = false;
79 } 79 }
80 } 80 }
@@ -269,7 +269,7 @@ void KConfig::load()
269 269
270 QFile f( mFileName ); 270 QFile f( mFileName );
271 if ( !f.open( IO_ReadOnly ) ) { 271 if ( !f.open( IO_ReadOnly ) ) {
272 qDebug("KConfig: could not open file %s ",mFileName.latin1() ); 272 //qDebug("KConfig: could not open file %s ",mFileName.latin1() );
273 return; 273 return;
274 } 274 }
275 275