summaryrefslogtreecommitdiffstats
path: root/src/tdesvnd/tdesvnd_dcop.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-12-03 22:23:58 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-12-03 22:23:58 +0900
commit5988388361bf5d6c78aa57984765fc39dadaf19b (patch)
treef68deaa5798f1473c9d30b2a623f75855768701f /src/tdesvnd/tdesvnd_dcop.cpp
parent17d4378d306d5c059be30aa5a9a93a9acc18e355 (diff)
downloadtdesvn-59883883.tar.gz
tdesvn-59883883.zip
Adapted to new KPasswordEdit::password() signature. This relates to bug 2961.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tdesvnd/tdesvnd_dcop.cpp')
-rw-r--r--src/tdesvnd/tdesvnd_dcop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tdesvnd/tdesvnd_dcop.cpp b/src/tdesvnd/tdesvnd_dcop.cpp
index 442dfae..6e58707 100644
--- a/src/tdesvnd/tdesvnd_dcop.cpp
+++ b/src/tdesvnd/tdesvnd_dcop.cpp
@@ -236,13 +236,13 @@ int tdesvnd_dcop::get_sslaccept(TQString hostname,TQString fingerprint,TQString
TQStringList tdesvnd_dcop::get_sslclientcertpw(TQString realm)
{
TQStringList resList;
- TQCString npass;
+ TQString npass;
int keep = 1;
int res = KPasswordDialog::getPassword(npass,i18n("Enter password for realm %1").arg(realm),&keep);
if (res!=KPasswordDialog::Accepted) {
return resList;
}
- resList.append(TQString(npass));
+ resList.append(npass);
if (keep) {
resList.append("true");
} else {