summaryrefslogtreecommitdiffstats
path: root/client/config/crystalconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/config/crystalconfig.h')
-rw-r--r--client/config/crystalconfig.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/client/config/crystalconfig.h b/client/config/crystalconfig.h
index 5bdc0fb..24e496e 100644
--- a/client/config/crystalconfig.h
+++ b/client/config/crystalconfig.h
@@ -22,7 +22,7 @@
#ifndef CRYSTALCONFIG_H
#define CRYSTALCONFIG_H
-#include <qobject.h>
+#include <tqobject.h>
#define TOP_LEFT 1
#define TOP_RIGHT 2
@@ -32,11 +32,12 @@
class KConfig;
class ConfigDialog;
-class CrystalConfig : public QObject
+class CrystalConfig : public TQObject
{
Q_OBJECT
+ TQ_OBJECT
public:
- CrystalConfig(KConfig* config, QWidget* parent);
+ CrystalConfig(KConfig* config, TQWidget* tqparent);
~CrystalConfig();
signals:
@@ -53,9 +54,9 @@ protected slots:
void overlay_active_changed(int);
void overlay_inactive_changed(int);
void boolChanged(bool) { selectionChanged(0); }
- void colorChanged(const QColor&) { selectionChanged(0); }
- void textChanged(const QString&) { selectionChanged(0); }
- void logoTextChanged(const QString&);
+ void colorChanged(const TQColor&) { selectionChanged(0); }
+ void textChanged(const TQString&) { selectionChanged(0); }
+ void logoTextChanged(const TQString&);
private:
KConfig *config_;