diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 12:35:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-23 18:50:27 +0900 |
commit | ef93b5a56c66ac5e4215eefe5cbbc00d384e5869 (patch) | |
tree | 0ce9e79b1513e8debdd969ad1869f46393214b24 /src/devices/pic/gui/pic_memory_editor.h | |
parent | cd145010cc926e0ade6af1fbe6d7230839f84599 (diff) | |
download | piklab-ef93b5a5.tar.gz piklab-ef93b5a5.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e860f57ae80a5d37c62b28271367a94959be6172)
Diffstat (limited to 'src/devices/pic/gui/pic_memory_editor.h')
-rw-r--r-- | src/devices/pic/gui/pic_memory_editor.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/pic/gui/pic_memory_editor.h b/src/devices/pic/gui/pic_memory_editor.h index 558cefb..8b161ce 100644 --- a/src/devices/pic/gui/pic_memory_editor.h +++ b/src/devices/pic/gui/pic_memory_editor.h @@ -41,7 +41,7 @@ private: //----------------------------------------------------------------------------- class MemoryEditor : public Device::MemoryEditor, public MemoryCaster { -Q_OBJECT +TQ_OBJECT public: MemoryEditor(MemoryRangeType type, Memory &memory, TQWidget *parent, const char *name) @@ -51,7 +51,7 @@ public: //----------------------------------------------------------------------------- class MemoryEditorLegend : public MemoryEditor { -Q_OBJECT +TQ_OBJECT public: MemoryEditorLegend(MemoryRangeType type, Memory &memory, TQWidget *parent); @@ -92,7 +92,7 @@ private: //----------------------------------------------------------------------------- class HexWordEditor : public Device::HexWordEditor, public MemoryCaster { -Q_OBJECT +TQ_OBJECT public: HexWordEditor(MemoryRangeType type, Memory &memory, TQWidget *parent); @@ -107,7 +107,7 @@ private: //----------------------------------------------------------------------------- class MemoryRangeEditor : public Device::MemoryRangeEditor, public MemoryCaster { - Q_OBJECT + TQ_OBJECT public: MemoryRangeEditor(MemoryRangeType type, Memory &memory, @@ -134,7 +134,7 @@ private: //----------------------------------------------------------------------------- class MemoryTypeEditor : public Device::MemoryTypeEditor, public MemoryCaster { -Q_OBJECT +TQ_OBJECT public: MemoryTypeEditor(const HexView *hexview, MemoryRangeType type, Memory &memory, TQWidget *parent, const char *name); @@ -147,7 +147,7 @@ private: //----------------------------------------------------------------------------- class MemoryTypeRangeEditor : public MemoryTypeEditor { -Q_OBJECT +TQ_OBJECT public: MemoryTypeRangeEditor(const HexView *hexview, MemoryRangeType type, Memory &memory, TQWidget *parent); @@ -160,7 +160,7 @@ protected: //----------------------------------------------------------------------------- class MemoryUserIdEditor : public MemoryTypeRangeEditor { -Q_OBJECT +TQ_OBJECT public: MemoryUserIdEditor(const HexView *hexview, Memory &memory, TQWidget *parent); @@ -181,7 +181,7 @@ private: //----------------------------------------------------------------------------- class MemoryCalibrationEditor : public MemoryTypeEditor { -Q_OBJECT +TQ_OBJECT public: MemoryCalibrationEditor(const HexView *hexview, Memory &memory, TQWidget *parent); |