diff options
Diffstat (limited to 'kopete/protocols/meanwhile/meanwhileaccount.h')
-rw-r--r-- | kopete/protocols/meanwhile/meanwhileaccount.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kopete/protocols/meanwhile/meanwhileaccount.h b/kopete/protocols/meanwhile/meanwhileaccount.h index d08b07c5..ba747212 100644 --- a/kopete/protocols/meanwhile/meanwhileaccount.h +++ b/kopete/protocols/meanwhile/meanwhileaccount.h @@ -37,15 +37,15 @@ public: * @param accountID The (meanwhile) account id of this account * @param name The name of this account */ - MeanwhileAccount(MeanwhileProtocol *protocol, const QString &accountID, + MeanwhileAccount(MeanwhileProtocol *protocol, const TQString &accountID, const char *name = 0L); ~MeanwhileAccount(); - virtual bool createContact(const QString &contactId, + virtual bool createContact(const TQString &contactId, Kopete::MetaContact *parentContact); - virtual void connectWithPassword(const QString &password); + virtual void connectWithPassword(const TQString &password); virtual void disconnect(); @@ -54,11 +54,11 @@ public: virtual KActionMenu *actionMenu(); /** Get the server host name */ - QString getServerName(); + TQString getServerName(); /** Get the server port */ int getServerPort(); /** Set the server host name */ - void setServerName(const QString &server); + void setServerName(const TQString &server); /** Set the server port */ void setServerPort(int port); /** Provide an information plugin for this account */ @@ -89,7 +89,7 @@ public: * Get the meanwhile id for this account * @return The meanwhile ID for the account */ - QString meanwhileId() const; + TQString meanwhileId() const; public slots: /** @@ -100,12 +100,12 @@ public slots: /** * Called by the session when a notification message has been received */ - void slotServerNotification(const QString &mesg); + void slotServerNotification(const TQString &mesg); /** Reimplemented from Kopete::Account */ void setOnlineStatus(const Kopete::OnlineStatus& status, - const QString &reason = QString::null); - void setAway(bool away, const QString&reason = QString::null); + const TQString &reason = TQString::null); + void setAway(bool away, const TQString&reason = TQString::null); private: /** Current online status */ @@ -115,7 +115,7 @@ private: MeanwhileSession *m_session; /* The user id for this account */ - QString m_meanwhileId; + TQString m_meanwhileId; }; #endif |