summaryrefslogtreecommitdiffstats
path: root/korn/dcop_proto.h
diff options
context:
space:
mode:
Diffstat (limited to 'korn/dcop_proto.h')
-rw-r--r--korn/dcop_proto.h14
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