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/kmail_proto.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/kmail_proto.h')
-rw-r--r-- | korn/kmail_proto.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/korn/kmail_proto.h b/korn/kmail_proto.h index 6e055b406..9a255ad0d 100644 --- a/korn/kmail_proto.h +++ b/korn/kmail_proto.h @@ -67,20 +67,20 @@ public: * @param password The password fetched out of the configuration or KWallet. * @return A mapping containing the configuration if success, and empty mapping otherwise. */ - virtual QMap< QString, QString > * createConfig( KConfigGroup* config, const QString& password ) const; + virtual TQMap< TQString, TQString > * createConfig( KConfigGroup* config, const TQString& password ) const; /** * The name of thes protocol * * @return "kmail" */ - virtual QString configName() const { return "kmail"; } + virtual TQString configName() const { return "kmail"; } /** * This adds the names of the groupboxes neccesairy for configuration to list. * * @param list A empty list at calling; after this function, "KMail" is added, because KMail is the only group here. */ - virtual void configFillGroupBoxes( QStringList* list ) const; + virtual void configFillGroupBoxes( TQStringList* list ) const; /** * This filles the config fields of the configuration. * There is only one config field, containing the accounts of KMail. @@ -89,14 +89,14 @@ public: * @param object An object to connect slots to. * @param result The resulting object. */ - virtual void configFields( QPtrVector< QWidget >* vector, const QObject* object, QPtrList< AccountInput >* result ) const; + virtual void configFields( TQPtrVector< TQWidget >* vector, const TQObject* object, TQPtrList< AccountInput >* result ) const; /** * This can manipulate entries that are readed from the configuartion. * This function does nothing here. * * @param config The configuration mapping as read from the configuration file */ - virtual void readEntries( QMap< QString, QString >* config ) const; + virtual void readEntries( TQMap< TQString, TQString >* config ) const; /** * This can manipulate entries that are writed to the configuartion file. @@ -104,11 +104,11 @@ public: * * @param config The configuration mapping as to be written to the configuration file (can be modified) */ - virtual void writeEntries( QMap< QString, QString >* config ) const; + virtual void writeEntries( TQMap< TQString, TQString >* config ) const; private: - QString readPassword( bool store, const KConfigBase &config, int id ) const; - QString getTypeAndConfig( const QString& kmailname, KConfig &config, int &nummer ) const; + TQString readPassword( bool store, const KConfigBase &config, int id ) const; + TQString getTypeAndConfig( const TQString& kmailname, KConfig &config, int &nummer ) const; static const char* kmailGroupName; static const char* kmailKeyName; |