summaryrefslogtreecommitdiffstats
path: root/kiosktool/desktopComponent.h
diff options
context:
space:
mode:
Diffstat (limited to 'kiosktool/desktopComponent.h')
-rw-r--r--kiosktool/desktopComponent.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/kiosktool/desktopComponent.h b/kiosktool/desktopComponent.h
index 189f4f2..3ce1c37 100644
--- a/kiosktool/desktopComponent.h
+++ b/kiosktool/desktopComponent.h
@@ -21,14 +21,15 @@
#include "component.h"
-#include <qstringlist.h>
-#include <qtimer.h>
+#include <tqstringlist.h>
+#include <tqtimer.h>
class DesktopComponent: public Component
{
Q_OBJECT
+ TQ_OBJECT
public:
- DesktopComponent( QObject *parent = 0);
+ DesktopComponent( TQObject *parent = 0);
virtual ~DesktopComponent();
virtual bool setupFinished();
@@ -42,9 +43,9 @@ protected slots:
void slotSetupReady();
private:
- QTimer m_timer;
- QString m_iconPositionsFile;
- QStringList m_origDesktopFiles;
+ TQTimer m_timer;
+ TQString m_iconPositionsFile;
+ TQStringList m_origDesktopFiles;
};
#endif