summaryrefslogtreecommitdiffstats
path: root/kiosktool/kcms/autostart/kcmautostart.h
diff options
context:
space:
mode:
Diffstat (limited to 'kiosktool/kcms/autostart/kcmautostart.h')
-rw-r--r--kiosktool/kcms/autostart/kcmautostart.h24
1 files changed, 13 insertions, 11 deletions
diff --git a/kiosktool/kcms/autostart/kcmautostart.h b/kiosktool/kcms/autostart/kcmautostart.h
index dfb5eba..6fe07c8 100644
--- a/kiosktool/kcms/autostart/kcmautostart.h
+++ b/kiosktool/kcms/autostart/kcmautostart.h
@@ -19,45 +19,47 @@
#ifndef KCMAUTOSTART_H
#define KCMAUTOSTART_H
-#include <qlistview.h>
+#include <tqlistview.h>
#include <kcmodule.h>
class KListView;
-class QStringList;
-class QPushButton;
+class TQStringList;
+class TQPushButton;
class AutoStartConfig : public KCModule
{
Q_OBJECT
+ TQ_OBJECT
public:
- AutoStartConfig(QWidget* parent, const char* name= 0L, const QStringList& foo = QStringList());
+ AutoStartConfig(TQWidget* parent, const char* name= 0L, const TQStringList& foo = TQStringList());
~AutoStartConfig() {};
void load();
void save();
void defaults();
- QString quickHelp() const;
+ TQString quickHelp() const;
protected slots:
void slotReload();
- void slotItemChecked(QCheckListItem *item);
+ void slotItemChecked(TQCheckListItem *item);
- bool autoloadEnabled(KConfig *config, const QString &filename);
- void setAutoloadEnabled(KConfig *config, const QString &filename, bool b);
+ bool autoloadEnabled(KConfig *config, const TQString &filename);
+ void setAutoloadEnabled(KConfig *config, const TQString &filename, bool b);
private:
KListView *_lvStartup;
};
-class CheckListItem : public QObject, public QCheckListItem
+class CheckListItem : public TQObject, public TQCheckListItem
{
Q_OBJECT
+ TQ_OBJECT
public:
- CheckListItem(QListView* parent, const QString &text);
+ CheckListItem(TQListView* parent, const TQString &text);
~CheckListItem() { }
signals:
- void changed(QCheckListItem*);
+ void changed(TQCheckListItem*);
protected:
virtual void stateChange(bool);
};