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 /filesharing/advanced | |
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 'filesharing/advanced')
-rw-r--r-- | filesharing/advanced/kcm_sambaconf/kcmsambaconf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filesharing/advanced/kcm_sambaconf/kcmsambaconf.cpp b/filesharing/advanced/kcm_sambaconf/kcmsambaconf.cpp index 11dd983a..c4b9c25f 100644 --- a/filesharing/advanced/kcm_sambaconf/kcmsambaconf.cpp +++ b/filesharing/advanced/kcm_sambaconf/kcmsambaconf.cpp @@ -1170,7 +1170,7 @@ void KcmSambaConf::addSambaUserBtnClicked() { SambaUser user( item->text(0), item->text(1).toInt() ); - TQCString password; + TQString password; int passResult = KPasswordDialog::getNewPassword(password, i18n("<qt>Please enter a password for the user <b>%1</b></qt>").arg(user.name)); if (passResult != KPasswordDialog::Accepted) { @@ -1233,7 +1233,7 @@ void KcmSambaConf::sambaUserPasswordBtnClicked() { SambaUser user( item->text(0), item->text(1).toInt() ); - TQCString password; + TQString password; int passResult = KPasswordDialog::getNewPassword(password, i18n("Please enter a password for the user %1").arg(user.name)); if (passResult != KPasswordDialog::Accepted) |