diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-11-30 11:26:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-11-30 11:26:25 +0900 |
commit | 580ffcad3885e5d24e98a9dffe4962654753136e (patch) | |
tree | d9019fe61ba9d77465eed215e3aa607772d76d39 /ark/arch.h | |
parent | 1d93eb1e7a39aae33ed852b61b490882e101432e (diff) | |
download | tdeutils-580ffcad3885e5d24e98a9dffe4962654753136e.tar.gz tdeutils-580ffcad3885e5d24e98a9dffe4962654753136e.zip |
Adapted to new KPasswordEdit::password() signature. This relates to bug 2961.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ark/arch.h')
-rw-r--r-- | ark/arch.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ /* - ark -- archiver for the KDE project + ark -- archiver for the TDE project Copyright (C) @@ -152,7 +152,7 @@ class Arch : public TQObject const TQString &filename, const TQString &openAsMimeType = TQString() ); TQString password() { return m_password; } - void setPassword(const TQString & pw) { m_password = pw.local8Bit(); } + void setPassword(const TQString & pw) { m_password = pw; } virtual void createPassword() {} protected slots: @@ -206,7 +206,7 @@ class Arch : public TQObject TQStringList *m_fileList; TQString m_destDir; bool m_viewFriendly; - TQCString m_password; + TQString m_password; }; // Columns |