diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-12-03 14:38:28 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-12-03 14:38:28 +0900 |
commit | 8b1fce53157829cef85f1fa7fbd13da804522032 (patch) | |
tree | 20a50d900f33d7c36d35cb76e99f942298ea6a13 | |
parent | 23c9e5d5c9c4c913d85b65a7cf7e0e458ad5470c (diff) | |
download | kpilot-8b1fce53157829cef85f1fa7fbd13da804522032.tar.gz kpilot-8b1fce53157829cef85f1fa7fbd13da804522032.zip |
Adapted to new KPasswordEdit::password() signature. This relates to bug 2961.git
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | conduits/malconduit/mal-setup.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conduits/malconduit/mal-setup.cc b/conduits/malconduit/mal-setup.cc index e853367..3a4c373 100644 --- a/conduits/malconduit/mal-setup.cc +++ b/conduits/malconduit/mal-setup.cc @@ -109,7 +109,7 @@ MALWidgetSetup::~MALWidgetSetup() MALConduitSettings::setProxyPort(0); } MALConduitSettings::setProxyUser( fConfigWidget->proxyUserName->text() ); - MALConduitSettings::setProxyPassword( fConfigWidget->proxyPassword->password() ); + MALConduitSettings::setProxyPassword( fConfigWidget->proxyPassword->password().latin1() ); // MAL Server settings (not yet possible!!!) MALConduitSettings::setMALServer( fConfigWidget->malServerName->currentText() ); |