diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:41:07 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:41:07 -0600 |
commit | dc141e9d18c39ec57f42d6c5df1a67a365c407f8 (patch) | |
tree | 8873df3c617e477881aa453385c81362b8531d7f /src/tdesvnd | |
parent | d6609da6b8c963fc19b622ab37f38e65df4e0a29 (diff) | |
download | tdesvn-dc141e9d18c39ec57f42d6c5df1a67a365c407f8.tar.gz tdesvn-dc141e9d18c39ec57f42d6c5df1a67a365c407f8.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/tdesvnd')
-rw-r--r-- | src/tdesvnd/tdesvnd_dcop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tdesvnd/tdesvnd_dcop.cpp b/src/tdesvnd/tdesvnd_dcop.cpp index 9575f78..fde8fd0 100644 --- a/src/tdesvnd/tdesvnd_dcop.cpp +++ b/src/tdesvnd/tdesvnd_dcop.cpp @@ -238,7 +238,7 @@ TQStringList tdesvnd_dcop::get_sslclientcertpw(TQString realm) TQStringList resList; TQCString npass; int keep = 1; - int res = KPasswordDialog::getPassword(npass,i18n("Enter password for realm %1").tqarg(realm),&keep); + int res = KPasswordDialog::getPassword(npass,i18n("Enter password for realm %1").arg(realm),&keep); if (res!=KPasswordDialog::Accepted) { return resList; } |