diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-12-03 15:50:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-12-03 15:50:13 +0900 |
commit | 536c9bab87fcc979fa957d10602cda8fc9114ede (patch) | |
tree | 3ee7b2975801998d7157ebc6a4d61b4df9cd2a7e | |
parent | cacbea2675467f47047b3bf605afb6ebcb7588e8 (diff) | |
download | kshowmail-536c9bab87fcc979fa957d10602cda8fc9114ede.tar.gz kshowmail-536c9bab87fcc979fa957d10602cda8fc9114ede.zip |
Adapted to new KPasswordEdit::password() signature. This relates to bug 2961.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | kshowmail/configelem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kshowmail/configelem.cpp b/kshowmail/configelem.cpp index 9685763..4407256 100644 --- a/kshowmail/configelem.cpp +++ b/kshowmail/configelem.cpp @@ -290,7 +290,7 @@ bool ConfigElem::assertPassword( bool force ) while( TQApplication::overrideCursor() ) TQApplication::restoreOverrideCursor(); - TQCString password; //for the password dialog to store the password + TQString password; //for the password dialog to store the password int result = KPasswordDialog::getPassword( password, i18n( "Please type in the password for %1" ).arg( getAccountName() ) ); //set waiting cursor |