summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/jabbercontact.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/jabber/jabbercontact.h')
-rw-r--r--kopete/protocols/jabber/jabbercontact.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/protocols/jabber/jabbercontact.h b/kopete/protocols/jabber/jabbercontact.h
index a7a3b024..64402a48 100644
--- a/kopete/protocols/jabber/jabbercontact.h
+++ b/kopete/protocols/jabber/jabbercontact.h
@@ -38,7 +38,7 @@ Q_OBJECT
public:
JabberContact (const XMPP::RosterItem &rosterItem,
- Kopete::Account *account, Kopete::MetaContact * mc, const QString &legacyId = QString());
+ Kopete::Account *account, Kopete::MetaContact * mc, const TQString &legacyId = TQString());
~JabberContact();
@@ -46,12 +46,12 @@ public:
* Create custom context menu items for the contact
* FIXME: implement manager version here?
*/
- QPtrList<KAction> *customContextMenuActions ();
+ TQPtrList<KAction> *customContextMenuActions ();
/**
* Start a rename request.
*/
- void rename ( const QString &newName );
+ void rename ( const TQString &newName );
/**
* Deal with an incoming message for this contact.
@@ -69,7 +69,7 @@ public:
bool isContactRequestingEvent( XMPP::MsgEvent event );
- QString lastReceivedMessageId () const;
+ TQString lastReceivedMessageId () const;
public slots:
@@ -95,7 +95,7 @@ public slots:
* a nondeterminate file size (such as over a socket)
*/
virtual void sendFile( const KURL &sourceURL = KURL(),
- const QString &fileName = QString::null, uint fileSize = 0L );
+ const TQString &fileName = TQString::null, uint fileSize = 0L );
/**
* Update the vCard on the server.
@@ -107,7 +107,7 @@ public slots:
* Set contact photo.
* @param path Path to the photo.
*/
- void setPhoto(const QString &photoPath);
+ void setPhoto(const TQString &photoPath);
/**
* this will start a voice call to the contact
@@ -146,7 +146,7 @@ private slots:
*/
void slotSelectResource ();
- void slotChatSessionDeleted ( QObject *sender );
+ void slotChatSessionDeleted ( TQObject *sender );
/**
* Check if cached vCard is recent.
@@ -209,7 +209,7 @@ private:
* the manager. If a new manager is created, the given
* resource is preselected.
*/
- JabberChatSession *manager ( const QString &resource, Kopete::Contact::CanCreateFlags );
+ JabberChatSession *manager ( const TQString &resource, Kopete::Contact::CanCreateFlags );
/**
* Create a message manager for this contact.
@@ -222,7 +222,7 @@ private:
/**
* Sends subscription messages.
*/
- void sendSubscription (const QString& subType);
+ void sendSubscription (const TQString& subType);
/**
* Sends a presence packet to this contact
@@ -240,7 +240,7 @@ private:
* The casts in manager() and slotChatSessionDeleted()
* are thus legal.
*/
- QPtrList<JabberChatSession> mManagers;
+ TQPtrList<JabberChatSession> mManagers;
/**
* Indicates whether the vCard is currently
@@ -258,8 +258,8 @@ private:
*/
bool mDiscoDone :1;
- QString mLastReceivedMessageId;
- QTimer *m_syncTimer;
+ TQString mLastReceivedMessageId;
+ TQTimer *m_syncTimer;
};