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-20 12:35:34 +0900 |
commit | e860f57ae80a5d37c62b28271367a94959be6172 (patch) | |
tree | 85e9cc9039002f570e983dc25d17471ddd4e31e6 /src/devices/pic/gui | |
parent | df187122dc0a22d76d4ac07dca3d87f060fde89c (diff) | |
download | piklab-e860f57ae80a5d37c62b28271367a94959be6172.tar.gz piklab-e860f57ae80a5d37c62b28271367a94959be6172.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/devices/pic/gui')
-rw-r--r-- | src/devices/pic/gui/pic_config_editor.h | 4 | ||||
-rw-r--r-- | src/devices/pic/gui/pic_config_word_editor.h | 6 | ||||
-rw-r--r-- | src/devices/pic/gui/pic_hex_view.h | 2 | ||||
-rw-r--r-- | src/devices/pic/gui/pic_memory_editor.h | 16 | ||||
-rw-r--r-- | src/devices/pic/gui/pic_prog_group_ui.h | 2 | ||||
-rw-r--r-- | src/devices/pic/gui/pic_register_view.h | 4 |
6 files changed, 17 insertions, 17 deletions
diff --git a/src/devices/pic/gui/pic_config_editor.h b/src/devices/pic/gui/pic_config_editor.h index b117707..cc5a0d6 100644 --- a/src/devices/pic/gui/pic_config_editor.h +++ b/src/devices/pic/gui/pic_config_editor.h @@ -18,7 +18,7 @@ class HexView; class MemoryConfigEditorWidget : public Device::MemoryEditorGroup, public MemoryCaster { -Q_OBJECT +TQ_OBJECT public: MemoryConfigEditorWidget(Memory &memory, bool withWordEditor, TQWidget *parent); @@ -27,7 +27,7 @@ public: //---------------------------------------------------------------------------- class MemoryConfigEditor : public MemoryTypeEditor { -Q_OBJECT +TQ_OBJECT public: MemoryConfigEditor(const HexView *hexview, Memory &memory, TQWidget *parent); diff --git a/src/devices/pic/gui/pic_config_word_editor.h b/src/devices/pic/gui/pic_config_word_editor.h index 30068e2..364c544 100644 --- a/src/devices/pic/gui/pic_config_word_editor.h +++ b/src/devices/pic/gui/pic_config_word_editor.h @@ -21,7 +21,7 @@ namespace Pic //---------------------------------------------------------------------------- class ConfigWordDialog : public Dialog { -Q_OBJECT +TQ_OBJECT public: ConfigWordDialog(const Memory &memory, uint index, TQWidget *parent); @@ -30,7 +30,7 @@ public: //---------------------------------------------------------------------------- class ConfigWordComboBox : public ComboBox { -Q_OBJECT +TQ_OBJECT public: ConfigWordComboBox(TQWidget *parent); @@ -49,7 +49,7 @@ private: //---------------------------------------------------------------------------- class ConfigWordEditor : public MemoryEditor { -Q_OBJECT +TQ_OBJECT public: ConfigWordEditor(Memory &memory, uint index, bool withWordEditor, TQWidget *parent); diff --git a/src/devices/pic/gui/pic_hex_view.h b/src/devices/pic/gui/pic_hex_view.h index 2c416b7..8156e5b 100644 --- a/src/devices/pic/gui/pic_hex_view.h +++ b/src/devices/pic/gui/pic_hex_view.h @@ -20,7 +20,7 @@ namespace Pic class HexView : public Device::HexView { -Q_OBJECT +TQ_OBJECT public: HexView(const HexEditor &editor, TQWidget *parent); 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); diff --git a/src/devices/pic/gui/pic_prog_group_ui.h b/src/devices/pic/gui/pic_prog_group_ui.h index cd489fd..bdefed9 100644 --- a/src/devices/pic/gui/pic_prog_group_ui.h +++ b/src/devices/pic/gui/pic_prog_group_ui.h @@ -16,7 +16,7 @@ namespace Programmer { class PicAdvancedDialog : public ::Programmer::AdvancedDialog { -Q_OBJECT +TQ_OBJECT public: PicAdvancedDialog(PicBase &base, TQWidget *parent, const char *name); diff --git a/src/devices/pic/gui/pic_register_view.h b/src/devices/pic/gui/pic_register_view.h index 11882c0..fe3def3 100644 --- a/src/devices/pic/gui/pic_register_view.h +++ b/src/devices/pic/gui/pic_register_view.h @@ -26,7 +26,7 @@ namespace Pic //----------------------------------------------------------------------------- class BankWidget : public TQFrame { -Q_OBJECT +TQ_OBJECT public: BankWidget(uint bank, TQWidget *parent); @@ -60,7 +60,7 @@ private: //----------------------------------------------------------------------------- class RegisterView : public Register::View { -Q_OBJECT +TQ_OBJECT public: RegisterView(TQWidget *parent); |