summaryrefslogtreecommitdiffstats
path: root/src/libgui/config_gen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libgui/config_gen.h')
-rw-r--r--src/libgui/config_gen.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/libgui/config_gen.h b/src/libgui/config_gen.h
index fa9fd56..412e75c 100644
--- a/src/libgui/config_gen.h
+++ b/src/libgui/config_gen.h
@@ -9,8 +9,8 @@
#ifndef CONFIG_GEN_H
#define CONFIG_GEN_H
-class QHBoxLayout;
-class QLabel;
+class TQHBoxLayout;
+class TQLabel;
#include "common/gui/dialog.h"
#include "tools/base/tool_group.h"
@@ -26,8 +26,9 @@ class SimpleTextEditor;
class GeneratorDialog : public Dialog
{
Q_OBJECT
+ TQ_OBJECT
public:
- GeneratorDialog(const QString &title, QWidget *parent, const char *name);
+ GeneratorDialog(const TQString &title, TQWidget *tqparent, const char *name);
void set(const Device::Data *data, const Tool::Group &group, PURL::ToolType stype);
protected slots:
@@ -37,12 +38,12 @@ protected slots:
virtual void slotUser1();
protected:
- QHBoxLayout *_hbox;
+ TQHBoxLayout *_hbox;
DeviceChooser::Button *_deviceChooser;
- KeyComboBox<QString> *_configType;
+ KeyComboBox<TQString> *_configType;
KeyComboBox<PURL::ToolType> *_toolType;
SimpleTextEditor *_text;
- QLabel *_warning;
+ TQLabel *_warning;
PURL::ToolType toolType() const;
void setToolType(PURL::ToolType stype);
@@ -53,8 +54,9 @@ protected:
class ConfigGenerator : public GeneratorDialog
{
Q_OBJECT
+ TQ_OBJECT
public:
- ConfigGenerator(QWidget *parent);
+ ConfigGenerator(TQWidget *tqparent);
virtual ~ConfigGenerator();
private slots:
@@ -72,8 +74,9 @@ private:
class TemplateGenerator : public GeneratorDialog
{
Q_OBJECT
+ TQ_OBJECT
public:
- TemplateGenerator(QWidget *parent);
+ TemplateGenerator(TQWidget *tqparent);
private:
virtual SourceLine::List generateLines(bool &ok) const;