summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/sms/services/smssendprovider.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/sms/services/smssendprovider.h')
-rw-r--r--kopete/protocols/sms/services/smssendprovider.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/kopete/protocols/sms/services/smssendprovider.h b/kopete/protocols/sms/services/smssendprovider.h
index 8560be15..bd046104 100644
--- a/kopete/protocols/sms/services/smssendprovider.h
+++ b/kopete/protocols/sms/services/smssendprovider.h
@@ -17,11 +17,11 @@
#ifndef SMSSENDPROVIDER_H
#define SMSSENDPROVIDER_H
-#include <qstring.h>
-#include <qstringlist.h>
-#include <qptrlist.h>
-#include <qlabel.h>
-#include <qvaluelist.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
+#include <tqptrlist.h>
+#include <tqlabel.h>
+#include <tqvaluelist.h>
#include <klineedit.h>
@@ -37,18 +37,18 @@ class SMSSendProvider : public QObject
{
Q_OBJECT
public:
- SMSSendProvider(const QString& providerName, const QString& prefixValue, Kopete::Account* account, QObject* parent = 0, const char* name = 0);
+ SMSSendProvider(const TQString& providerName, const TQString& prefixValue, Kopete::Account* account, TQObject* parent = 0, const char* name = 0);
~SMSSendProvider();
void setAccount(Kopete::Account *account);
int count();
- const QString& name(int i);
- const QString& value(int i);
- const QString& description(int i);
+ const TQString& name(int i);
+ const TQString& value(int i);
+ const TQString& description(int i);
const bool isHidden(int i);
- void save(QPtrList<KLineEdit>& args);
+ void save(TQPtrList<KLineEdit>& args);
void send(const Kopete::Message& msg);
int maxSize();
@@ -56,18 +56,18 @@ private slots:
void slotReceivedOutput(KProcess*, char *buffer, int buflen);
void slotSendFinished(KProcess*);
private:
- QStringList names;
- QStringList descriptions;
- QStringList values;
- QValueList<bool> isHiddens;
+ TQStringList names;
+ TQStringList descriptions;
+ TQStringList values;
+ TQValueList<bool> isHiddens;
int messagePos;
int telPos;
int m_maxSize;
- QString provider;
- QString prefix;
- QCString output;
+ TQString provider;
+ TQString prefix;
+ TQCString output;
Kopete::Account* m_account;
@@ -76,7 +76,7 @@ private:
bool canSend;
signals:
void messageSent(const Kopete::Message& msg);
- void messageNotSent(const Kopete::Message& msg, const QString &error);
+ void messageNotSent(const Kopete::Message& msg, const TQString &error);
} ;
#endif //SMSSENDPROVIDER_H