diff options
author | Michele Calgaro <[email protected]> | 2018-12-03 22:23:58 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-12-03 22:23:58 +0900 |
commit | 5988388361bf5d6c78aa57984765fc39dadaf19b (patch) | |
tree | f68deaa5798f1473c9d30b2a623f75855768701f /src/ksvnwidgets/authdialogimpl.cpp | |
parent | 17d4378d306d5c059be30aa5a9a93a9acc18e355 (diff) | |
download | tdesvn-5988388361bf5d6c78aa57984765fc39dadaf19b.tar.gz tdesvn-5988388361bf5d6c78aa57984765fc39dadaf19b.zip |
Adapted to new KPasswordEdit::password() signature. This relates to bug 2961.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/ksvnwidgets/authdialogimpl.cpp')
-rw-r--r-- | src/ksvnwidgets/authdialogimpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ksvnwidgets/authdialogimpl.cpp b/src/ksvnwidgets/authdialogimpl.cpp index fc9ab46..dba4efc 100644 --- a/src/ksvnwidgets/authdialogimpl.cpp +++ b/src/ksvnwidgets/authdialogimpl.cpp @@ -54,8 +54,8 @@ const TQString AuthDialogImpl::Username()const const TQString AuthDialogImpl::Password() { #if 0 - /* as described in interface description wie must make a copy of string */ - curPass = TQString::fromUtf8(m_PasswordEdit->password()); + /* as described in interface description we must make a copy of string */ + curPass = m_PasswordEdit->password(); return curPass; #endif return m_PasswordEdit->text(); |