summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/jabberformlineedit.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/jabber/jabberformlineedit.h')
-rw-r--r--kopete/protocols/jabber/jabberformlineedit.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kopete/protocols/jabber/jabberformlineedit.h b/kopete/protocols/jabber/jabberformlineedit.h
index 770bab39..179a8844 100644
--- a/kopete/protocols/jabber/jabberformlineedit.h
+++ b/kopete/protocols/jabber/jabberformlineedit.h
@@ -18,8 +18,8 @@
#ifndef JABBERFORMLINEEDIT_H
#define JABBERFORMLINEEDIT_H
-#include <qwidget.h>
-#include <qlineedit.h>
+#include <tqwidget.h>
+#include <tqlineedit.h>
#include <kpassdlg.h>
#include "xmpp_tasks.h"
@@ -32,14 +32,14 @@ class JabberFormLineEdit:public QLineEdit
{
Q_OBJECT public:
- JabberFormLineEdit (const int type, const QString & realName, const QString & value, QWidget * parent = 0, const char *name = 0);
+ JabberFormLineEdit (const int type, const TQString & realName, const TQString & value, TQWidget * parent = 0, const char *name = 0);
~JabberFormLineEdit ();
public slots:void slotGatherData (XMPP::Form & form);
private:
int fieldType;
- QString fieldName;
+ TQString fieldName;
};
@@ -47,13 +47,13 @@ class JabberFormPasswordEdit:public KPasswordEdit
{
Q_OBJECT public:
- JabberFormPasswordEdit(const int type, const QString & realName, const QString & value, QWidget * parent = 0, const char *name = 0);
+ JabberFormPasswordEdit(const int type, const TQString & realName, const TQString & value, TQWidget * parent = 0, const char *name = 0);
public slots:void slotGatherData (XMPP::Form & form);
private:
int fieldType;
- QString fieldName;
+ TQString fieldName;
};
#endif