summaryrefslogtreecommitdiffstats
path: root/src/libgui/object_view.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commitf7ceb2957839027e8027a9a4c0dfff730cb9b704 (patch)
treed1d583f11612d149bc0718c80779df4653699dbb /src/libgui/object_view.h
parentd98fea1f859d23e1b1220a65d7a8eda3b757fd08 (diff)
downloadpiklab-f7ceb2957839027e8027a9a4c0dfff730cb9b704.tar.gz
piklab-f7ceb2957839027e8027a9a4c0dfff730cb9b704.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/piklab@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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; }