diff options
Diffstat (limited to 'korn/imap_proto.h')
-rw-r--r-- | korn/imap_proto.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/korn/imap_proto.h b/korn/imap_proto.h index c4dfc896d..97fb209ad 100644 --- a/korn/imap_proto.h +++ b/korn/imap_proto.h @@ -59,13 +59,13 @@ public: * @param ssl true if ssl is selected. * @return "imaps" if ssl is true, "imap" otherwise */ - virtual QString protocol( bool ssl ) const { return ssl ? "imaps" : "imap"; } + virtual TQString protocol( bool ssl ) const { return ssl ? "imaps" : "imap"; } /** * This name of this protocol: it goed in the configuration under this name. * * @return The name of this protocol: "imap" */ - virtual QString configName() const { return "imap"; } + virtual TQString configName() const { return "imap"; } /** * true, because it is possible to read subjects with imap. * @@ -95,7 +95,7 @@ public: */ virtual unsigned short defaultPort( bool ssl ) const { return ssl ? 993 : 143; } - virtual QStringList authList() const { return QStringList::split( '|', "*|LOGIN|ANONYMOUS|CRAM-MD5", false); } + virtual TQStringList authList() const { return TQStringList::split( '|', "*|LOGIN|ANONYMOUS|CRAM-MD5", false); } //Could not test did, my server don't support other authentication methods. /** @@ -113,7 +113,7 @@ public: * * @param list A list to add the name of groupboxes in. */ - virtual void configFillGroupBoxes( QStringList* list ) const; + virtual void configFillGroupBoxes( TQStringList* list ) const; /** * This function adds elements to the groupbox. * @@ -121,7 +121,7 @@ public: * @param object The object to connect signals to * @param ptrlist A list with object which is filled in this function. The list must already be created. */ - virtual void configFields( QPtrVector< QWidget >* vector, const QObject* object, QPtrList< AccountInput >* ptrlist ) const; + virtual void configFields( TQPtrVector< TQWidget >* vector, const TQObject* object, TQPtrList< AccountInput >* ptrlist ) const; /** * This function is used to change the configuration. * In the case, the metadata-key is splitted out, and put in the @p metadata parameter. @@ -129,7 +129,7 @@ public: * @param map The mapping containing the configuration. This object can change in this function. * @param metadata An empty mapping at the begin, a mapping containing metadata at the end. */ - virtual void readEntries( QMap< QString, QString >* map, QMap< QString, QString >* metadata ) const; + virtual void readEntries( TQMap< TQString, TQString >* map, TQMap< TQString, TQString >* metadata ) const; /** * This function edits writeEntry. It merge things back to a metadata-key and adds this * key to the configuration. @@ -137,7 +137,7 @@ public: * @param map The mapping which contains the information to be written to a configuarion file. * the contents of this mapping can change in this function. */ - virtual void writeEntries( QMap< QString, QString >* map ) const; + virtual void writeEntries( TQMap< TQString, TQString >* map ) const; }; #endif |