summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/sms/smsaccount.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/sms/smsaccount.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/sms/smsaccount.h')
-rw-r--r--kopete/protocols/sms/smsaccount.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/protocols/sms/smsaccount.h b/kopete/protocols/sms/smsaccount.h
index 2547fe6c..1df8a63f 100644
--- a/kopete/protocols/sms/smsaccount.h
+++ b/kopete/protocols/sms/smsaccount.h
@@ -32,14 +32,14 @@ class SMSAccount : public Kopete::Account
Q_OBJECT
public:
- SMSAccount( SMSProtocol *parent, const QString &accountID, const char *name = 0L );
+ SMSAccount( SMSProtocol *parent, const TQString &accountID, const char *name = 0L );
~SMSAccount();
virtual KActionMenu* actionMenu(); // Per-protocol actions for the systray and the status bar
- virtual void setAway( bool away, const QString & );
+ virtual void setAway( bool away, const TQString & );
- void translateNumber(QString &theNumber);
+ void translateNumber(TQString &theNumber);
/**
* Checks to see if the message should be split or not, in case it is too long.
@@ -52,7 +52,7 @@ public:
public slots:
void loadConfig();
- void setOnlineStatus( const Kopete::OnlineStatus& status , const QString &reason = QString::null);
+ void setOnlineStatus( const Kopete::OnlineStatus& status , const TQString &reason = TQString::null);
public slots:
virtual void connect(const Kopete::OnlineStatus& initial= Kopete::OnlineStatus());
@@ -61,17 +61,17 @@ public slots:
protected slots:
virtual void slotSendingSuccess(const Kopete::Message &msg);
- virtual void slotSendingFailure(const Kopete::Message &msg, const QString &error);
+ virtual void slotSendingFailure(const Kopete::Message &msg, const TQString &error);
virtual void slotConnected();
virtual void slotDisconnected();
protected:
- bool createContact(const QString &contactId, Kopete::MetaContact *parentContact);
+ bool createContact(const TQString &contactId, Kopete::MetaContact *parentContact);
private:
bool theSubEnable;
- QString theSubCode;
+ TQString theSubCode;
SMSMsgAction theLongMsgAction;
SMSService* theService;
};