summaryrefslogtreecommitdiffstats
path: root/src/devices/mem24/gui/mem24_memory_editor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/mem24/gui/mem24_memory_editor.h')
-rw-r--r--src/devices/mem24/gui/mem24_memory_editor.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/mem24/gui/mem24_memory_editor.h b/src/devices/mem24/gui/mem24_memory_editor.h
index 657810a..47916a4 100644
--- a/src/devices/mem24/gui/mem24_memory_editor.h
+++ b/src/devices/mem24/gui/mem24_memory_editor.h
@@ -36,11 +36,11 @@ class HexWordEditor : public Device::HexWordEditor, public MemoryCaster
Q_OBJECT
TQ_OBJECT
public:
- HexWordEditor(Memory &memory, TQWidget *tqparent)
- : Device::HexWordEditor(memory, 2, tqparent), MemoryCaster(memory) {}
+ HexWordEditor(Memory &memory, TQWidget *parent)
+ : Device::HexWordEditor(memory, 2, parent), MemoryCaster(memory) {}
private:
- virtual BitValue tqmask() const { return 0xFF; }
+ virtual BitValue mask() const { return 0xFF; }
virtual BitValue normalizeWord(BitValue value) const { return value; }
virtual BitValue word() const { return memory().byte(_offset); }
virtual void setWord(BitValue value) { memory().setByte(_offset, value); }
@@ -52,13 +52,13 @@ class MemoryRangeEditor : public Device::MemoryRangeEditor, public MemoryCaster
Q_OBJECT
TQ_OBJECT
public:
- MemoryRangeEditor(Memory &memory, TQWidget *tqparent);
+ MemoryRangeEditor(Memory &memory, TQWidget *parent);
private:
virtual uint nbWords() const { return device().nbBytes(); }
virtual uint addressIncrement() const { return 1; }
virtual Address startAddress() const { return 0x0; }
- virtual Device::HexWordEditor *createHexWordEditor(TQWidget *tqparent);
+ virtual Device::HexWordEditor *createHexWordEditor(TQWidget *parent);
virtual bool isRangeReadOnly() const { return false; }
};
@@ -68,7 +68,7 @@ class MemoryTypeEditor : public Device::MemoryTypeEditor, public MemoryCaster
Q_OBJECT
TQ_OBJECT
public:
- MemoryTypeEditor(const HexView *hexview, Memory &memory, TQWidget *tqparent);
+ MemoryTypeEditor(const HexView *hexview, Memory &memory, TQWidget *parent);
virtual void init(bool first);
private: