summaryrefslogtreecommitdiffstats
path: root/src/kvilib/ext/kvi_dcophelper.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-11 21:03:51 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-12 17:47:51 +0900
commitef786e3a1a322e0584654503d288e3630744e998 (patch)
tree46b09379b11042db5eabc22c961163f2135b12a3 /src/kvilib/ext/kvi_dcophelper.cpp
parent641ffc9497f5a0e756aa13cb6b4fcf32046a43b6 (diff)
downloadkvirc-ef786e3a1a322e0584654503d288e3630744e998.tar.gz
kvirc-ef786e3a1a322e0584654503d288e3630744e998.zip
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 1e6b97e1b1d29b0a895643eb9ce7ffe08d6fed75)
Diffstat (limited to 'src/kvilib/ext/kvi_dcophelper.cpp')
-rw-r--r--src/kvilib/ext/kvi_dcophelper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kvilib/ext/kvi_dcophelper.cpp b/src/kvilib/ext/kvi_dcophelper.cpp
index 7992d4a4..438db496 100644
--- a/src/kvilib/ext/kvi_dcophelper.cpp
+++ b/src/kvilib/ext/kvi_dcophelper.cpp
@@ -131,7 +131,7 @@ bool KviDCOPHelper::stringRetVoidDCOPCall(const KviTQCString &szObj,const KviTQC
if(!g_pApp->dcopClient()->call(m_szAppId,szObj,szFunc,data,replyType,replyData))
return false;
TQDataStream reply( replyData, IO_ReadOnly );
- if(replyType == TQSTRING_OBJECT_NAME_STRING)
+ if(replyType == "TQString")
{
reply >> szRet;
return true;
@@ -152,7 +152,7 @@ bool KviDCOPHelper::stringRetIntDCOPCall(const KviTQCString &szObj,const KviTQCS
return false;
TQDataStream reply( replyData, IO_ReadOnly );
- if(replyType == TQSTRING_OBJECT_NAME_STRING)
+ if(replyType == "TQString")
{
reply >> szRet;
return true;