summaryrefslogtreecommitdiffstats
path: root/src/kiosvn/kiolistener.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:43:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:43:57 -0600
commit7fbb972791f9e3fbde5dfa85c113285353122600 (patch)
tree7eba52127d3e9dedd7a8594555c478a0ae7626ae /src/kiosvn/kiolistener.cpp
parent497d419c0d4bc6c667f31ff874bc70e2c612d808 (diff)
downloadtdesvn-7fbb972791f9e3fbde5dfa85c113285353122600.tar.gz
tdesvn-7fbb972791f9e3fbde5dfa85c113285353122600.zip
Additional renaming of kde to tde
Diffstat (limited to 'src/kiosvn/kiolistener.cpp')
-rw-r--r--src/kiosvn/kiolistener.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kiosvn/kiolistener.cpp b/src/kiosvn/kiolistener.cpp
index 5904639..f08dc18 100644
--- a/src/kiosvn/kiolistener.cpp
+++ b/src/kiosvn/kiolistener.cpp
@@ -70,13 +70,13 @@ bool KioListener::contextGetLogMessage (TQString & msg,const svn::CommitItemList
}
}
stream << list;
- if (!par->dcopClient()->call("kded","kdesvnd","get_logmsg(TQMap<TQString,TQString>)",params,replyType,reply)) {
+ if (!par->dcopClient()->call("kded","tdesvnd","get_logmsg(TQMap<TQString,TQString>)",params,replyType,reply)) {
msg = "Communication with dcop failed";
kdWarning()<<msg<<endl;
return false;
}
} else {
- if (!par->dcopClient()->call("kded","kdesvnd","get_logmsg()",params,replyType,reply)) {
+ if (!par->dcopClient()->call("kded","tdesvnd","get_logmsg()",params,replyType,reply)) {
msg = "Communication with dcop failed";
kdWarning()<<msg<<endl;
return false;
@@ -289,7 +289,7 @@ KioListener::contextSslServerTrustPrompt (const SslServerTrustData & data, apr_u
<< data.issuerDName
<< data.realm;
- if (!par->dcopClient()->call("kded","kdesvnd",
+ if (!par->dcopClient()->call("kded","tdesvnd",
"get_sslaccept(TQString,TQString,TQString,TQString,TQString,TQString)",
params,replyType,reply)) {
kdWarning()<<"Communication with dcop failed"<<endl;
@@ -328,7 +328,7 @@ bool KioListener::contextSslClientCertPrompt (TQString & certFile)
TQByteArray reply;
TQByteArray params;
TQCString replyType;
- if (!par->dcopClient()->call("kded","kdesvnd",
+ if (!par->dcopClient()->call("kded","tdesvnd",
"get_sslclientcertfile()",
params,replyType,reply)) {
kdWarning()<<"Communication with dcop failed"<<endl;
@@ -373,7 +373,7 @@ bool KioListener::contextGetLogin (const TQString & realm, TQString & username,
stream << realm;
stream << username;
- if (!par->dcopClient()->call("kded","kdesvnd","get_login(TQString,TQString)",params,replyType,reply)) {
+ if (!par->dcopClient()->call("kded","tdesvnd","get_login(TQString,TQString)",params,replyType,reply)) {
kdWarning()<<"Communication with dcop failed"<<endl;
return false;
}