summaryrefslogtreecommitdiffstats
path: root/korn/kmail_proto.h
diff options
context:
space:
mode:
Diffstat (limited to 'korn/kmail_proto.h')
-rw-r--r--korn/kmail_proto.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/korn/kmail_proto.h b/korn/kmail_proto.h
index 6e055b40..9a255ad0 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;