diff options
Diffstat (limited to 'kopete/protocols/meanwhile/meanwhilesession.h')
-rw-r--r-- | kopete/protocols/meanwhile/meanwhilesession.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/protocols/meanwhile/meanwhilesession.h b/kopete/protocols/meanwhile/meanwhilesession.h index 0e2a3558..b7d7f8c7 100644 --- a/kopete/protocols/meanwhile/meanwhilesession.h +++ b/kopete/protocols/meanwhile/meanwhilesession.h @@ -55,7 +55,7 @@ public: * the connection process is ascychronous - a loginDone() signal will be * emitted when sucessfully logged in. */ - void connect(QString password); + void connect(TQString password); /** * Disconnect from the server. @@ -70,7 +70,7 @@ public: * @param msg a custom message to use, if required */ void setStatus(Kopete::OnlineStatus status, - const QString msg = QString::null); + const TQString msg = TQString::null); /** * Add a single contact to be registered for status updates @@ -82,7 +82,7 @@ public: * Add a list of contacts to be registered for status updates * @param contact The list of contacts to register */ - void addContacts(const QDict<Kopete::Contact>& contacts); + void addContacts(const TQDict<Kopete::Contact>& contacts); /** * Send a message (with recipient specified). @@ -126,7 +126,7 @@ signals: * out-of-band data (eg, the password is incorrect). * @param mesgString A description of the notification */ - void serverNotification(const QString &mesgString); + void serverNotification(const TQString &mesgString); private: /** Main libmeanwhile session object */ @@ -174,7 +174,7 @@ private: struct ConversationData { MeanwhileContact *contact; Kopete::ChatSession *chat; - QValueList<Kopete::Message> *queue; + TQValueList<Kopete::Message> *queue; }; /** (To be) stored in the mwConference struct */ @@ -217,7 +217,7 @@ private: * @param name the extened username to parse * @return just the name part of the username info */ - QString getNickName(QString name); + TQString getNickName(TQString name); /** * Convenience method to call the above from a mwLoginInfo struct. All is @@ -225,7 +225,7 @@ private: * @param logininfo the login info for a contact * @return just the name part of the login info data */ - QString getNickName(struct mwLoginInfo *logininfo); + TQString getNickName(struct mwLoginInfo *logininfo); /** * Resolve a contact to find (and set) the display name. This requires the |