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/dcop_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/dcop_proto.h')
-rw-r--r-- | korn/dcop_proto.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/korn/dcop_proto.h b/korn/dcop_proto.h index cb92b8bf9..38a5404dd 100644 --- a/korn/dcop_proto.h +++ b/korn/dcop_proto.h @@ -37,7 +37,7 @@ template< class T> class QPtrList; template< class T> class QPtrVector; template< class T, class S> class QMap; -#include <qstring.h> +#include <tqstring.h> /** * This class implements a DCOP-protocol. @@ -72,19 +72,19 @@ public: * @param config The configuration instance to be mapped * @return The keys and values of the configuration in a mapping */ - virtual QMap< QString, QString > * createConfig( KConfigGroup* config, const QString& passwd ) const; + virtual TQMap< TQString, TQString > * createConfig( KConfigGroup* config, const TQString& passwd ) const; /** * This return the name of this protocol. It is always "dcop". * @return The name of this protocol: "dcop" */ - virtual QString configName() const { return "dcop"; } + virtual TQString configName() const { return "dcop"; } /** * This function sets into the list the groupboxes. * * @param list A (empty) list, which is filled with the names of group-boxes. */ - virtual void configFillGroupBoxes( QStringList* list ) const; + virtual void configFillGroupBoxes( TQStringList* list ) const; /** * This function filles the configuration field of this protocol. * It is used to construct the configuration dialog. @@ -93,15 +93,15 @@ public: * @param obj The pointer to the configDialog to connect signals to. * @param result A list with AccountInput which is used to reconstruct the configuration. */ - virtual void configFields( QPtrVector< QWidget >* vector, const QObject* obj, QPtrList< AccountInput >* result ) const; + virtual void configFields( TQPtrVector< TQWidget >* vector, const TQObject* obj, TQPtrList< AccountInput >* result ) const; /** * This function can edit some configuaration option before reading them. */ - virtual void readEntries( QMap< QString, QString >* ) const; + virtual void readEntries( TQMap< TQString, TQString >* ) const; /** * This function can edit some configuaration option before writing them. */ - virtual void writeEntries( QMap< QString, QString >* ) const; + virtual void writeEntries( TQMap< TQString, TQString >* ) const; //Functions that return a derived class. //This way, no explicit cast is needed |