diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-12-01 03:03:18 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-12-01 03:03:18 +0100 |
commit | 9faa91eecd162a3d9758a2ecd951578e9b7b19e6 (patch) | |
tree | af6591818d4795c356f49efc58649fb9000ba7d1 /kopete/libkopete | |
parent | 244c1e03a0954ef3f3cb9716f9c90ac2fb26bf39 (diff) | |
download | tdenetwork-9faa91eecd162a3d9758a2ecd951578e9b7b19e6.tar.gz tdenetwork-9faa91eecd162a3d9758a2ecd951578e9b7b19e6.zip |
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
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; \ |