summaryrefslogtreecommitdiffstats
path: root/kopete
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-12-01 03:03:18 +0100
committerSlávek Banko <slavek.banko@axis.cz>2016-12-01 03:03:34 +0100
commit7b774ba41372239f47b787becb8fb9ef7d809369 (patch)
tree81304eae455462fdcf6e0516b51007840a1fd02e /kopete
parent8fb0b52d502e633720a8caa0ea603edb1d04fd1f (diff)
downloadtdenetwork-7b774ba41372239f47b787becb8fb9ef7d809369.tar.gz
tdenetwork-7b774ba41372239f47b787becb8fb9ef7d809369.zip
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 9faa91eecd162a3d9758a2ecd951578e9b7b19e6)
Diffstat (limited to 'kopete')
-rw-r--r--kopete/libkopete/kautoconfig.cpp4
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; \