summaryrefslogtreecommitdiffstats
path: root/korn/imap_proto.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /korn/imap_proto.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-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/imap_proto.h')
-rw-r--r--korn/imap_proto.h14
1 files changed, 7 insertions, 7 deletions
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