From d7633c195a464e4d344ada9eea61afd10110598a Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 4 May 2011 19:54:24 +0000 Subject: Port kdesvn to TQt4 This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1230412 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/ksvnwidgets/pwstorage.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'src/ksvnwidgets/pwstorage.h') diff --git a/src/ksvnwidgets/pwstorage.h b/src/ksvnwidgets/pwstorage.h index 93e9680..821005e 100644 --- a/src/ksvnwidgets/pwstorage.h +++ b/src/ksvnwidgets/pwstorage.h @@ -20,26 +20,27 @@ #ifndef _PWSTORAGE_H #define _PWSTORAGE_H -#include -#include +#include +#include class PwStorageData; /** Access to wallet isn't threadsafe 'cause wallet has not to be called from within threads! */ -class PwStorage:public QObject +class PwStorage:public TQObject { Q_OBJECT + TQ_OBJECT protected: PwStorageData* mData; public: - bool getCertPw(const QString&realm,QString&pw); - bool getLogin(const QString&realm,QString&user,QString&pw); - bool getCachedLogin(const QString&realm,QString&user,QString&pw); - bool setCertPw(const QString&realm, const QString&pw); - bool setLogin(const QString&realm,const QString&user,const QString&pw); - bool setCachedLogin(const QString&realm,const QString&user,const QString&pw); + bool getCertPw(const TQString&realm,TQString&pw); + bool getLogin(const TQString&realm,TQString&user,TQString&pw); + bool getCachedLogin(const TQString&realm,TQString&user,TQString&pw); + bool setCertPw(const TQString&realm, const TQString&pw); + bool setLogin(const TQString&realm,const TQString&user,const TQString&pw); + bool setCachedLogin(const TQString&realm,const TQString&user,const TQString&pw); bool connectWallet(); static PwStorage*self(); -- cgit v1.2.1