diff options
Diffstat (limited to 'src/devices/gui/memory_editor.h')
-rw-r--r-- | src/devices/gui/memory_editor.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/gui/memory_editor.h b/src/devices/gui/memory_editor.h index 2ef60d8..ac8bfdc 100644 --- a/src/devices/gui/memory_editor.h +++ b/src/devices/gui/memory_editor.h @@ -44,7 +44,7 @@ class MemoryEditor : public TQFrame Q_OBJECT TQ_OBJECT public: - MemoryEditor(Device::Memory *memory, TQWidget *tqparent, const char *name); + MemoryEditor(Device::Memory *memory, TQWidget *parent, const char *name); virtual void setReadOnly(bool readOnly) = 0; public slots: @@ -65,7 +65,7 @@ Q_OBJECT TQ_OBJECT public: MemoryRangeEditor(Device::Memory &memory, uint nbLines, uint nbCols, - uint offset, int nb, TQWidget *tqparent, const char *name); + uint offset, int nb, TQWidget *parent, const char *name); virtual void init(); virtual void setReadOnly(bool readOnly); void setComment(const TQString &text); @@ -101,7 +101,7 @@ protected: virtual uint nbWords() const = 0; virtual uint addressIncrement() const = 0; virtual Address startAddress() const = 0; - virtual HexWordEditor *createHexWordEditor(TQWidget *tqparent) = 0; + virtual HexWordEditor *createHexWordEditor(TQWidget *parent) = 0; virtual bool isRangeReadOnly() const = 0; virtual void updateAddressColor(uint i, Address address) { Q_UNUSED(i); Q_UNUSED(address); } virtual void addLegend(TQVBoxLayout *vbox) { Q_UNUSED(vbox); } @@ -113,7 +113,7 @@ class MemoryEditorGroup : public MemoryEditor Q_OBJECT TQ_OBJECT public: - MemoryEditorGroup(Device::Memory *memory, TQWidget *tqparent, const char *name); + MemoryEditorGroup(Device::Memory *memory, TQWidget *parent, const char *name); void addEditor(MemoryEditor *editor); virtual void setReadOnly(bool readOnly); @@ -131,7 +131,7 @@ class MemoryTypeEditor : public MemoryEditorGroup Q_OBJECT TQ_OBJECT public: - MemoryTypeEditor(const HexView *hexview, Device::Memory &memory, TQWidget *tqparent, const char *name); + MemoryTypeEditor(const HexView *hexview, Device::Memory &memory, TQWidget *parent, const char *name); virtual void init(bool first); virtual void setReadOnly(bool readOnly); |