diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kresources/groupwise/soap/gwjobs.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/groupwise/soap/gwjobs.h')
-rw-r--r-- | kresources/groupwise/soap/gwjobs.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kresources/groupwise/soap/gwjobs.h b/kresources/groupwise/soap/gwjobs.h index 3cf47c095..815e6261e 100644 --- a/kresources/groupwise/soap/gwjobs.h +++ b/kresources/groupwise/soap/gwjobs.h @@ -20,7 +20,7 @@ #ifndef GROUPWISE_JOBS_H #define GROUPWISE_JOBS_H -#include <qobject.h> +#include <tqobject.h> #include <string> @@ -45,12 +45,12 @@ class GroupwiseServer; class GWJob { public: - GWJob( GroupwiseServer *server, struct soap *soap, const QString &url, const std::string &session ); + GWJob( GroupwiseServer *server, struct soap *soap, const TQString &url, const std::string &session ); int error() const { return mError; } protected: GroupwiseServer *mServer; struct soap *mSoap; - QString mUrl; + TQString mUrl; const std::string mSession; int mError; }; @@ -59,10 +59,10 @@ class ReadAddressBooksJob : public GWJob { public: ReadAddressBooksJob( GroupwiseServer *server, struct soap *soap, - const QString &url, + const TQString &url, const std::string &session ); - void setAddressBookIds( const QStringList& ); + void setAddressBookIds( const TQStringList& ); void run(); @@ -70,7 +70,7 @@ class ReadAddressBooksJob : public GWJob void readAddressBook( std::string& ); private: - QStringList mAddressBookIds; + TQStringList mAddressBookIds; KABC::Resource *mResource; int mProgress; }; @@ -78,7 +78,7 @@ class ReadAddressBooksJob : public GWJob class ReadCalendarJob : public GWJob { public: - ReadCalendarJob( GroupwiseServer *server, struct soap *soap, const QString &url, + ReadCalendarJob( GroupwiseServer *server, struct soap *soap, const TQString &url, const std::string &session ); void setCalendarFolder( std::string* ); @@ -101,11 +101,11 @@ class UpdateAddressBooksJob : public GWJob { public: UpdateAddressBooksJob( GroupwiseServer *server, struct soap *soap, - const QString &url, + const TQString &url, const std::string &session ); /** set the address book IDs to update - at the moment this is only the System Address Book (SAB) */ - void setAddressBookIds( const QStringList& ); + void setAddressBookIds( const TQStringList& ); /** * set the sequence number to start reading deltas from (usually the last sequenec number @@ -122,7 +122,7 @@ class UpdateAddressBooksJob : public GWJob void updateAddressBook( std::string& ); private: - QStringList mAddressBookIds; + TQStringList mAddressBookIds; KABC::Resource *mResource; int mProgress; unsigned long mLastPORebuildTime; |