summaryrefslogtreecommitdiffstats
path: root/src/panel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/panel.h')
-rw-r--r--src/panel.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/panel.h b/src/panel.h
index 51e5181..3214dfc 100644
--- a/src/panel.h
+++ b/src/panel.h
@@ -18,23 +18,23 @@
#ifndef PANEL_H
#define PANEL_H
-#include <qframe.h>
-#include <kconfig.h>
-#include <qpalette.h>
+#include <ntqframe.h>
+#include <tdeconfig.h>
+#include <ntqpalette.h>
/**
*@author Miguel Novas
*/
-class Panel : public QFrame {
+class Panel : public TQFrame {
Q_OBJECT
public:
- Panel(QWidget *parent, const char *name);
+ Panel(TQWidget *parent, const char *name);
~Panel();
- inline const QColor &getColorTitle() { return colorGroup().text(); };
- inline const QColor &getColorValue() { return colorGroup().foreground(); };
+ inline const TQColor &getColorTitle() { return colorGroup().text(); };
+ inline const TQColor &getColorValue() { return colorGroup().foreground(); };
static bool readShow (const char *name);
static void writeShow(const char *name, bool fShow);
@@ -45,11 +45,11 @@ public slots:
signals:
- void eventReceived(QEvent *);
+ void eventReceived(TQEvent *);
private:
- bool eventFilter( QObject *o , QEvent *e);
+ bool eventFilter( TQObject *o , TQEvent *e);
};
#endif