diff options
Diffstat (limited to 'kdepasswd/passwd.h')
-rw-r--r-- | kdepasswd/passwd.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kdepasswd/passwd.h b/kdepasswd/passwd.h index a0c27a5a9..72590740d 100644 --- a/kdepasswd/passwd.h +++ b/kdepasswd/passwd.h @@ -9,7 +9,7 @@ #ifndef __Passwd_h_Included__ #define __Passwd_h_Included__ -#include <qcstring.h> +#include <tqcstring.h> #include <kdesu/process.h> /** @@ -20,7 +20,7 @@ class PasswdProcess : public PtyProcess { public: - PasswdProcess(QCString user=0); + PasswdProcess(TQCString user=0); ~PasswdProcess(); enum Errors { PasswdNotFound=1, PasswordIncorrect, PasswordNotGood }; @@ -28,14 +28,14 @@ public: int checkCurrent(const char *oldpass); int exec(const char *oldpass, const char *newpass, int check=0); - QCString error() { return m_Error; } + TQCString error() { return m_Error; } private: - bool isPrompt(QCString line, const char *word=0L); + bool isPrompt(TQCString line, const char *word=0L); int ConversePasswd(const char *oldpass, const char *newpass, int check); - QCString m_User, m_Error; + TQCString m_User, m_Error; bool bOtherUser; }; |