summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/meanwhile/meanwhileaccount.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/protocols/meanwhile/meanwhileaccount.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/meanwhile/meanwhileaccount.h')
-rw-r--r--kopete/protocols/meanwhile/meanwhileaccount.h20
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