summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-11 20:50:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-11 20:50:25 +0900
commit7c40eb2981e88ba646d746fe4ef9828242505574 (patch)
treef58e154f1f16e8ed6b3903dfc6c9898e141afe09
parent2f0e4adbf7b092c0ccf4d5c6ef2f2dc62e0df2c2 (diff)
downloadtdesvn-7c40eb2981e88ba646d746fe4ef9828242505574.tar.gz
tdesvn-7c40eb2981e88ba646d746fe4ef9828242505574.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>
-rw-r--r--src/tdeiosvn/tdeiolistener.cpp6
-rw-r--r--src/tdeiosvn/tdeiosvn.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/tdeiosvn/tdeiolistener.cpp b/src/tdeiosvn/tdeiolistener.cpp
index 9f4531d..dc36588 100644
--- a/src/tdeiosvn/tdeiolistener.cpp
+++ b/src/tdeiosvn/tdeiolistener.cpp
@@ -83,7 +83,7 @@ bool KioListener::contextGetLogMessage (TQString & msg,const svn::CommitItemList
}
}
- if (replyType!=TQSTRINGLIST_OBJECT_NAME_STRING) {
+ if (replyType!="TQStringList") {
msg = "Wrong reply type";
kdWarning()<<msg<<endl;
return false;
@@ -334,7 +334,7 @@ bool KioListener::contextSslClientCertPrompt (TQString & certFile)
kdWarning()<<"Communication with dcop failed"<<endl;
return false;
}
- if (replyType!=TQSTRING_OBJECT_NAME_STRING) {
+ if (replyType!="TQString") {
kdWarning()<<"Wrong reply type"<<endl;
return false;
}
@@ -377,7 +377,7 @@ bool KioListener::contextGetLogin (const TQString & realm, TQString & username,
kdWarning()<<"Communication with dcop failed"<<endl;
return false;
}
- if (replyType!=TQSTRINGLIST_OBJECT_NAME_STRING) {
+ if (replyType!="TQStringList") {
kdWarning()<<"Wrong reply type"<<endl;
return false;
}
diff --git a/src/tdeiosvn/tdeiosvn.cpp b/src/tdeiosvn/tdeiosvn.cpp
index 2f35ee9..b44251f 100644
--- a/src/tdeiosvn/tdeiosvn.cpp
+++ b/src/tdeiosvn/tdeiosvn.cpp
@@ -697,7 +697,7 @@ void tdeio_svnProtocol::commit(const KURL::List&url)
kdWarning()<<msg<<endl;
return;
}
- if (replyType!=TQSTRINGLIST_OBJECT_NAME_STRING) {
+ if (replyType!="TQStringList") {
msg = "Wrong reply type";
kdWarning()<<msg<<endl;
return;