diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:01:33 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:01:33 -0600 |
commit | fbbad1fdbec7cab719c3e9bdb6d8693cf8b3e61d (patch) | |
tree | 44afa11fb537fa93881a338ae3b58f50e0e57371 /src/devices/mem24 | |
parent | 8ac8ddd6c1dcbda5e0240f5b2ad51800130f7360 (diff) | |
download | piklab-fbbad1fdbec7cab719c3e9bdb6d8693cf8b3e61d.tar.gz piklab-fbbad1fdbec7cab719c3e9bdb6d8693cf8b3e61d.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src/devices/mem24')
-rw-r--r-- | src/devices/mem24/gui/mem24_hex_view.h | 2 | ||||
-rw-r--r-- | src/devices/mem24/gui/mem24_memory_editor.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/mem24/gui/mem24_hex_view.h b/src/devices/mem24/gui/mem24_hex_view.h index 6de6ca0..3316d80 100644 --- a/src/devices/mem24/gui/mem24_hex_view.h +++ b/src/devices/mem24/gui/mem24_hex_view.h @@ -19,7 +19,7 @@ namespace Mem24 class HexView : public Device::HexView { Q_OBJECT - TQ_OBJECT + public: HexView(const HexEditor &editor, TQWidget *parent); virtual uint nbChecksumChars() const { return 4; } diff --git a/src/devices/mem24/gui/mem24_memory_editor.h b/src/devices/mem24/gui/mem24_memory_editor.h index 47916a4..4677fc2 100644 --- a/src/devices/mem24/gui/mem24_memory_editor.h +++ b/src/devices/mem24/gui/mem24_memory_editor.h @@ -34,7 +34,7 @@ private: class HexWordEditor : public Device::HexWordEditor, public MemoryCaster { Q_OBJECT - TQ_OBJECT + public: HexWordEditor(Memory &memory, TQWidget *parent) : Device::HexWordEditor(memory, 2, parent), MemoryCaster(memory) {} @@ -50,7 +50,7 @@ private: class MemoryRangeEditor : public Device::MemoryRangeEditor, public MemoryCaster { Q_OBJECT - TQ_OBJECT + public: MemoryRangeEditor(Memory &memory, TQWidget *parent); @@ -66,7 +66,7 @@ private: class MemoryTypeEditor : public Device::MemoryTypeEditor, public MemoryCaster { Q_OBJECT - TQ_OBJECT + public: MemoryTypeEditor(const HexView *hexview, Memory &memory, TQWidget *parent); virtual void init(bool first); |