From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- korn/imap_proto.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'korn/imap_proto.h') diff --git a/korn/imap_proto.h b/korn/imap_proto.h index c4dfc896..97fb209a 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 -- cgit v1.2.3