diff options
author | Michele Calgaro <[email protected]> | 2018-12-01 23:39:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-12-01 23:39:45 +0900 |
commit | 53fe3bf43aeb43f51f6b6ebb7453938e85c0223b (patch) | |
tree | d63838d4442041515669c84a02700bbca9f1aa77 /kopete/plugins/cryptography/cryptographyplugin.cpp | |
parent | ca937b0c3ebc76d1a079e5d4b22022c4ccb29889 (diff) | |
download | tdenetwork-53fe3bf43aeb43f51f6b6ebb7453938e85c0223b.tar.gz tdenetwork-53fe3bf43aeb43f51f6b6ebb7453938e85c0223b.zip |
Adapted to new KPasswordEdit::password() signature. This relates to bug 2961.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kopete/plugins/cryptography/cryptographyplugin.cpp')
-rw-r--r-- | kopete/plugins/cryptography/cryptographyplugin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kopete/plugins/cryptography/cryptographyplugin.cpp b/kopete/plugins/cryptography/cryptographyplugin.cpp index 5e10cec9..ae38143f 100644 --- a/kopete/plugins/cryptography/cryptographyplugin.cpp +++ b/kopete/plugins/cryptography/cryptographyplugin.cpp @@ -117,12 +117,12 @@ CryptographyPlugin* CryptographyPlugin::plugin() CryptographyPlugin* CryptographyPlugin::pluginStatic_ = 0L; -TQCString CryptographyPlugin::cachedPass() +TQString CryptographyPlugin::cachedPass() { return pluginStatic_->m_cachedPass; } -void CryptographyPlugin::setCachedPass(const TQCString& p) +void CryptographyPlugin::setCachedPass(const TQString& p) { if(pluginStatic_->mCacheMode==Never) return; @@ -308,7 +308,7 @@ void CryptographyPlugin::slotSelectContactKey() void CryptographyPlugin::slotForgetCachedPass() { - m_cachedPass=TQCString(); + m_cachedPass=TQString(); m_cachedPass_timer->stop(); } |