summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/config/appearance/emoticonseditdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/kopete/config/appearance/emoticonseditdialog.h')
-rw-r--r--kopete/kopete/config/appearance/emoticonseditdialog.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/kopete/kopete/config/appearance/emoticonseditdialog.h b/kopete/kopete/config/appearance/emoticonseditdialog.h
index 4bbaccda..fe5b8426 100644
--- a/kopete/kopete/config/appearance/emoticonseditdialog.h
+++ b/kopete/kopete/config/appearance/emoticonseditdialog.h
@@ -17,12 +17,12 @@
#define EMOTICONSEDITDIALOG_H
#include <kdebug.h>
-#include <qhbox.h>
+#include <tqhbox.h>
#include <kdialogbase.h>
#include <klineedit.h>
#include <kpushbutton.h>
-#include <qfile.h>
-#include <qdom.h>
+#include <tqfile.h>
+#include <tqdom.h>
class EmoticonsEditWidget;
@@ -31,18 +31,18 @@ class EditDialog : public KDialogBase
Q_OBJECT
public:
- EditDialog(QWidget *parent, const char* name);
- EditDialog(QWidget *parent, const char* name, QPixmap emot, QString text, QString file);
- const QString getText() { return leText->text(); };
- const QString getEmoticon() { return emoticon; };
+ EditDialog(TQWidget *parent, const char* name);
+ EditDialog(TQWidget *parent, const char* name, TQPixmap emot, TQString text, TQString file);
+ const TQString getText() { return leText->text(); };
+ const TQString getEmoticon() { return emoticon; };
private slots:
void btnIconClicked();
private:
void setupDlg();
- QWidget *wdg;
+ TQWidget *wdg;
KLineEdit *leText;
KPushButton *btnIcon;
- QString emoticon;
+ TQString emoticon;
};
class EmoticonsEditDialog : public KDialogBase
@@ -50,8 +50,8 @@ class EmoticonsEditDialog : public KDialogBase
Q_OBJECT
public:
- EmoticonsEditDialog(QWidget *parent=0, QString theme = QString::null, const char* name="EmoticonsEditDialog");
- void addEmoticon(QString emo, QString text, bool copy);
+ EmoticonsEditDialog(TQWidget *parent=0, TQString theme = TQString::null, const char* name="EmoticonsEditDialog");
+ void addEmoticon(TQString emo, TQString text, bool copy);
private slots:
void slotOkClicked();
@@ -60,11 +60,11 @@ class EmoticonsEditDialog : public KDialogBase
void slotRemoveClicked();
private:
- void removeEmoticon(QString emo);
+ void removeEmoticon(TQString emo);
EmoticonsEditWidget *mMainWidget;
- QString themeName;
+ TQString themeName;
EditDialog *dlg;
- QDomDocument themeXml;
+ TQDomDocument themeXml;
};
#endif