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 /korn/dcopdrop.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 'korn/dcopdrop.h')
-rw-r--r-- | korn/dcopdrop.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/korn/dcopdrop.h b/korn/dcopdrop.h index 91bc8f98d..32e85066d 100644 --- a/korn/dcopdrop.h +++ b/korn/dcopdrop.h @@ -105,7 +105,7 @@ public: * * @return true is all information is retrieved succesfully. */ - virtual bool readConfigGroup( const QMap< QString, QString > & map, const Protocol * protocol ); + virtual bool readConfigGroup( const TQMap< TQString, TQString > & map, const Protocol * protocol ); /** * This function writes the information to a config group. * @@ -118,7 +118,7 @@ public: * * @return "dcop" */ - virtual QString type() const; + virtual TQString type() const; /** * This function should return true if it uses a synchrone comminucation. @@ -137,9 +137,9 @@ public: /** * This function does reads the subjects. * @param stop A variable which isn't used: only used for synchrone actions - * @return A QValueVector which KornMailSubject* instance for every new mail. + * @return A TQValueVector which KornMailSubject* instance for every new mail. */ - virtual QValueVector< KornMailSubject >* doReadSubjects( bool *stop ); + virtual TQValueVector< KornMailSubject >* doReadSubjects( bool *stop ); /** * This function should return true if it is possible to delete emails. @@ -155,7 +155,7 @@ public: * @param stop Not used: only for synchrone opererations. * @return true if deleting was succesfull */ - virtual bool deleteMails( QPtrList<const KornMailId> * ids, bool * stop ); + virtual bool deleteMails( TQPtrList<const KornMailId> * ids, bool * stop ); /** * This function returns true if it is possible to read emails. @@ -168,8 +168,8 @@ public: private: bool _isRunning; - QMap< int, KornMailSubject* > *_msgList; - QString *_name; + TQMap< int, KornMailSubject* > *_msgList; + TQString *_name; int _counter; DCOPDropInterface *_interface; @@ -179,12 +179,12 @@ private slots: void doReadSubjectsASync( void ); public: //accessed by DCOPDropInterface - int addMessage( const QString& subject, const QString& message ); + int addMessage( const TQString& subject, const TQString& message ); bool removeMessage( int id ); //accessed by DCOPDropCfg - QString DCOPName() const; - void setDCOPName( const QString& ); + TQString DCOPName() const; + void setDCOPName( const TQString& ); }; #endif |