diff options
Diffstat (limited to 'kopete/libkopete')
-rw-r--r-- | kopete/libkopete/kautoconfig.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kopete/libkopete/kautoconfig.cpp b/kopete/libkopete/kautoconfig.cpp index cdb29672..9570f15c 100644 --- a/kopete/libkopete/kautoconfig.cpp +++ b/kopete/libkopete/kautoconfig.cpp @@ -35,7 +35,7 @@ #include "kdebug.h" #define functionCallPreOrderCheck(functionName, returnValue) \ if(!d->retrievedSettings){ \ - kdDebug(180) << "KAutoConfig::"functionName"() was called before " \ + kdDebug(180) << "KAutoConfig::" functionName "() was called before " \ "KAutoConfig::retrieveSettings(). This should NEVER happen because " \ "it will do nothing. Please Fix." << endl; \ return returnValue; \ @@ -43,7 +43,7 @@ #define functionCallPostOrderCheck(functionName, returnValue) \ if(d->retrievedSettings){ \ - kdDebug(180) << "KAutoConfig::"functionName"() was called after " \ + kdDebug(180) << "KAutoConfig::" functionName "() was called after " \ "KAutoConfig::retrieveSettings(). This should NEVER happen because " \ "it will do nothing. Please Fix." << endl; \ return returnValue; \ |