summaryrefslogtreecommitdiffstats
path: root/src/libgui/object_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libgui/object_view.h')
-rw-r--r--src/libgui/object_view.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libgui/object_view.h b/src/libgui/object_view.h
index 9b7ea65..f65ba59 100644
--- a/src/libgui/object_view.h
+++ b/src/libgui/object_view.h
@@ -26,7 +26,7 @@ class BaseEditor : public SimpleTextEditor, public Log::Base
Q_OBJECT
TQ_OBJECT
public:
- BaseEditor(const PURL::Url &source, const Device::Data *data, TQWidget *tqparent);
+ BaseEditor(const PURL::Url &source, const Device::Data *data, TQWidget *parent);
virtual ~BaseEditor();
virtual PURL::Url url() const { return _url; }
@@ -43,8 +43,8 @@ class CoffEditor : public BaseEditor
Q_OBJECT
TQ_OBJECT
public:
- CoffEditor(const PURL::Url &source, const Device::Data &data, TQWidget *tqparent);
- CoffEditor(const TextObject &object, TQWidget *tqparent);
+ CoffEditor(const PURL::Url &source, const Device::Data &data, TQWidget *parent);
+ CoffEditor(const TextObject &object, TQWidget *parent);
virtual PURL::FileType fileType() const { return PURL::Coff; }
virtual bool open(const PURL::Url &url);
@@ -58,7 +58,7 @@ class ObjectEditor : public BaseEditor
Q_OBJECT
TQ_OBJECT
public:
- ObjectEditor(const PURL::Url &source, TQWidget *tqparent);
+ ObjectEditor(const PURL::Url &source, TQWidget *parent);
virtual PURL::FileType fileType() const { return PURL::Unknown; }
virtual bool open(const PURL::Url &url);
@@ -72,7 +72,7 @@ class LibraryEditor : public BaseEditor
Q_OBJECT
TQ_OBJECT
public:
- LibraryEditor(const PURL::Url &source, TQWidget *tqparent);
+ LibraryEditor(const PURL::Url &source, TQWidget *parent);
virtual PURL::FileType fileType() const { return PURL::Unknown; }
virtual bool open(const PURL::Url &url);
@@ -88,8 +88,8 @@ class DisassemblyEditor : public SimpleTextEditor, public Log::Base
Q_OBJECT
TQ_OBJECT
public:
- DisassemblyEditor(const PURL::Url &hexUrl, const Device::Data &data, TQWidget *tqparent);
- DisassemblyEditor(const HexEditor &e, const Device::Data &data, TQWidget *tqparent);
+ DisassemblyEditor(const PURL::Url &hexUrl, const Device::Data &data, TQWidget *parent);
+ DisassemblyEditor(const HexEditor &e, const Device::Data &data, TQWidget *parent);
virtual PURL::FileType fileType() const { return PURL::AsmGPAsm; }
virtual bool open(const PURL::Url &url);
virtual PURL::Url url() const { return _url; }