summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/kopeteeditglobalidentitywidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/kopete/kopeteeditglobalidentitywidget.h')
-rw-r--r--kopete/kopete/kopeteeditglobalidentitywidget.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/kopete/kopeteeditglobalidentitywidget.h b/kopete/kopete/kopeteeditglobalidentitywidget.h
index 731a2cc5..208d8316 100644
--- a/kopete/kopete/kopeteeditglobalidentitywidget.h
+++ b/kopete/kopete/kopeteeditglobalidentitywidget.h
@@ -18,8 +18,8 @@
#ifndef KOPETEEDITGLOBALIDENTITYWIDGET_H
#define KOPETEEDITGLOBALIDENTITYWIDGET_H
-#include <qwidget.h>
-#include <qlabel.h>
+#include <tqwidget.h>
+#include <tqlabel.h>
/**
* This is a simple widget added to a toolbar in KopeteWindow.
@@ -34,7 +34,7 @@ class KopeteEditGlobalIdentityWidget : public QWidget
{
Q_OBJECT
public:
- KopeteEditGlobalIdentityWidget(QWidget *parent = 0, const char *name = 0);
+ KopeteEditGlobalIdentityWidget(TQWidget *parent = 0, const char *name = 0);
virtual ~KopeteEditGlobalIdentityWidget();
public slots:
@@ -57,7 +57,7 @@ private slots:
/**
* When a global identity key is changed, update the GUI.
*/
- void updateGUI(const QString &key, const QVariant &value);
+ void updateGUI(const TQString &key, const TQVariant &value);
/**
* The photo label was clicked, show a ImageFileDialog.
*/
@@ -65,7 +65,7 @@ private slots:
/**
* The nickname was changed, display the text in red to display the change.
*/
- void lineNicknameTextChanged(const QString &text);
+ void lineNicknameTextChanged(const TQString &text);
/**
* User press Return/Enter in the KLineEdit, commit the new nickname.
*/
@@ -87,13 +87,13 @@ class ClickableLabel : public QLabel
{
Q_OBJECT
public:
- ClickableLabel(QWidget *parent = 0, const char *name = 0);
+ ClickableLabel(TQWidget *parent = 0, const char *name = 0);
signals:
void clicked();
protected:
- void mouseReleaseEvent(QMouseEvent *event);
+ void mouseReleaseEvent(TQMouseEvent *event);
};
#endif