summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopeteprotocol.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/kopeteprotocol.h')
-rw-r--r--kopete/libkopete/kopeteprotocol.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kopete/libkopete/kopeteprotocol.h b/kopete/libkopete/kopeteprotocol.h
index 805e00c2..546247cf 100644
--- a/kopete/libkopete/kopeteprotocol.h
+++ b/kopete/libkopete/kopeteprotocol.h
@@ -62,7 +62,7 @@ class KOPETE_EXPORT Protocol : public Plugin
public:
/**
- * @todo Ideally, the destructor should be protected. but we need it public to allow QPtrList<Protocol>
+ * @todo Ideally, the destructor should be protected. but we need it public to allow TQPtrList<Protocol>
*/
virtual ~Protocol();
@@ -78,14 +78,14 @@ public:
*
* @return The new @ref Account object created by this function
*/
- virtual Account *createNewAccount( const QString &accountId ) = 0;
+ virtual Account *createNewAccount( const TQString &accountId ) = 0;
/**
* @brief Create a new AddContactPage widget to be shown in the Add Contact Wizard.
*
* @return A new AddContactPage to be shown in the Add Contact Wizard
*/
- virtual AddContactPage *createAddContactWidget( QWidget *parent, Account *account ) = 0;
+ virtual AddContactPage *createAddContactWidget( TQWidget *parent, Account *account ) = 0;
/**
* @brief Create a new KopeteEditAccountWidget
@@ -95,7 +95,7 @@ public:
* @param account is the KopeteAccount to edit. If it's 0L, then we create a new account
* @param parent The parent of the 'to be returned' widget
*/
- virtual KopeteEditAccountWidget * createEditAccountWidget( Account *account, QWidget *parent ) = 0;
+ virtual KopeteEditAccountWidget * createEditAccountWidget( Account *account, TQWidget *parent ) = 0;
/**
@@ -163,7 +163,7 @@ protected:
* @param parent The protocol's parent object
* @param name The protocol's name
*/
- Protocol( KInstance *instance, QObject *parent, const char *name );
+ Protocol( KInstance *instance, TQObject *parent, const char *name );
/**
* @brief Sets the capabilities of this protcol.
@@ -224,7 +224,7 @@ public:
*
* @todo we probably should think to another way to save the contacltist.
*/
- virtual void deserialize( MetaContact *metaContact, const QMap<QString, QString> &serializedData );
+ virtual void deserialize( MetaContact *metaContact, const TQMap<TQString, TQString> &serializedData );
/**
* @brief Deserialize a single contact.
@@ -242,8 +242,8 @@ public:
* @todo we probably should think to another way to save the contacltist.
*/
virtual Contact *deserializeContact( MetaContact *metaContact,
- const QMap<QString, QString> &serializedData,
- const QMap<QString, QString> &addressBookData );
+ const TQMap<TQString, TQString> &serializedData,
+ const TQMap<TQString, TQString> &addressBookData );