diff options
author | Michele Calgaro <[email protected]> | 2018-11-27 14:55:23 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-11-27 14:55:23 +0900 |
commit | 6ec26d859be239e6db1bb392140db76227a56522 (patch) | |
tree | 1cae6e9ff2c6537c9454113f54a20b123f3921d1 /tdenewstuff | |
parent | 82afa07a430c43bc122c7325dc67fb9f3ad6216a (diff) | |
download | tdelibs-6ec26d859be239e6db1bb392140db76227a56522.tar.gz tdelibs-6ec26d859be239e6db1bb392140db76227a56522.zip |
KPasswordEdit::password() now returns a TQString instead of a const char *. This relates to bug 2961.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdenewstuff')
-rw-r--r-- | tdenewstuff/security.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdenewstuff/security.cpp b/tdenewstuff/security.cpp index d161c2969..3bca16166 100644 --- a/tdenewstuff/security.cpp +++ b/tdenewstuff/security.cpp @@ -172,7 +172,7 @@ void Security::slotDataArrived(KProcIO *procIO) case Sign: if (data.find("passphrase.enter") != -1) { - TQCString password; + TQString password; KeyStruct key = m_keys[m_secretKey]; int result = KPasswordDialog::getPassword(password, i18n("<qt>Enter passphrase for key <b>0x%1</b>, belonging to<br><i>%2<%3></i>:</qt>").arg(m_secretKey).arg(key.name).arg(key.mail)); if (result == KPasswordDialog::Accepted) |