summaryrefslogtreecommitdiffstats
path: root/src/modules/system
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-11 21:03:51 +0900
commit1e6b97e1b1d29b0a895643eb9ce7ffe08d6fed75 (patch)
tree46b09379b11042db5eabc22c961163f2135b12a3 /src/modules/system
parent641ffc9497f5a0e756aa13cb6b4fcf32046a43b6 (diff)
downloadkvirc-1e6b97e1b1d29b0a895643eb9ce7ffe08d6fed75.tar.gz
kvirc-1e6b97e1b1d29b0a895643eb9ce7ffe08d6fed75.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>
Diffstat (limited to 'src/modules/system')
-rw-r--r--src/modules/system/libkvisystem.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/system/libkvisystem.cpp b/src/modules/system/libkvisystem.cpp
index d8ebcfd6..2ecb47a8 100644
--- a/src/modules/system/libkvisystem.cpp
+++ b/src/modules/system/libkvisystem.cpp
@@ -496,7 +496,7 @@ static bool system_kvs_fnc_dcop(KviKvsModuleFunctionCall *c)
return false;
}
ds << iii;
- } else if(kvi_strEqualCI(TQSTRING_OBJECT_NAME_STRING,szType.ptr()))
+ } else if(kvi_strEqualCI("TQString",szType.ptr()))
{
TQString ddd = tmp.ptr();
ds << ddd;
@@ -543,7 +543,7 @@ static bool system_kvs_fnc_dcop(KviKvsModuleFunctionCall *c)
bool bqw;
ret >> bqw;
c->returnValue()->setInteger(bqw ? 1 : 0);
- } else if(szRetType == TQSTRING_OBJECT_NAME_STRING)
+ } else if(szRetType == "TQString")
{
TQString szz;
ret >> szz;
@@ -577,7 +577,7 @@ static bool system_kvs_fnc_dcop(KviKvsModuleFunctionCall *c)
}
c->returnValue()->setArray(arry);
#endif
- } else if(szRetType == TQSTRINGLIST_OBJECT_NAME_STRING)
+ } else if(szRetType == "TQStringList")
{
TQStringList csl;
ret >> csl;