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/pic | |
parent | 8ac8ddd6c1dcbda5e0240f5b2ad51800130f7360 (diff) | |
download | piklab-fbbad1fdbec7cab719c3e9bdb6d8693cf8b3e61d.tar.gz piklab-fbbad1fdbec7cab719c3e9bdb6d8693cf8b3e61d.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src/devices/pic')
-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 045ca4d..b117707 100644 --- a/src/devices/pic/gui/pic_config_editor.h +++ b/src/devices/pic/gui/pic_config_editor.h @@ -19,7 +19,7 @@ class HexView; class MemoryConfigEditorWidget : public Device::MemoryEditorGroup, public MemoryCaster { Q_OBJECT - TQ_OBJECT + public: MemoryConfigEditorWidget(Memory &memory, bool withWordEditor, TQWidget *parent); }; @@ -28,7 +28,7 @@ public: class MemoryConfigEditor : public MemoryTypeEditor { Q_OBJECT - TQ_OBJECT + public: MemoryConfigEditor(const HexView *hexview, Memory &memory, TQWidget *parent); virtual void init(bool first); diff --git a/src/devices/pic/gui/pic_config_word_editor.h b/src/devices/pic/gui/pic_config_word_editor.h index 38f9573..30068e2 100644 --- a/src/devices/pic/gui/pic_config_word_editor.h +++ b/src/devices/pic/gui/pic_config_word_editor.h @@ -22,7 +22,7 @@ namespace Pic class ConfigWordDialog : public Dialog { Q_OBJECT - TQ_OBJECT + public: ConfigWordDialog(const Memory &memory, uint index, TQWidget *parent); }; @@ -31,7 +31,7 @@ public: class ConfigWordComboBox : public ComboBox { Q_OBJECT - TQ_OBJECT + public: ConfigWordComboBox(TQWidget *parent); void appendItem(const TQString &text, uint index) { insertItem(text); _map.append(index); } @@ -50,7 +50,7 @@ private: class ConfigWordEditor : public MemoryEditor { Q_OBJECT - TQ_OBJECT + public: ConfigWordEditor(Memory &memory, uint index, bool withWordEditor, TQWidget *parent); virtual void setReadOnly(bool readOnly); diff --git a/src/devices/pic/gui/pic_hex_view.h b/src/devices/pic/gui/pic_hex_view.h index c3a53f8..2c416b7 100644 --- a/src/devices/pic/gui/pic_hex_view.h +++ b/src/devices/pic/gui/pic_hex_view.h @@ -21,7 +21,7 @@ namespace Pic class HexView : public Device::HexView { Q_OBJECT - TQ_OBJECT + public: HexView(const HexEditor &editor, TQWidget *parent); Memory *memory() { return static_cast<Memory *>(_memory); } diff --git a/src/devices/pic/gui/pic_memory_editor.h b/src/devices/pic/gui/pic_memory_editor.h index e641ec4..7d0f857 100644 --- a/src/devices/pic/gui/pic_memory_editor.h +++ b/src/devices/pic/gui/pic_memory_editor.h @@ -42,7 +42,7 @@ private: class MemoryEditor : public Device::MemoryEditor, public MemoryCaster { Q_OBJECT - TQ_OBJECT + public: MemoryEditor(MemoryRangeType type, Memory &memory, TQWidget *parent, const char *name) : Device::MemoryEditor(&memory, parent, name), MemoryCaster(type, memory) {} @@ -52,7 +52,7 @@ public: class MemoryEditorLegend : public MemoryEditor { Q_OBJECT - TQ_OBJECT + public: MemoryEditorLegend(MemoryRangeType type, Memory &memory, TQWidget *parent); virtual void setReadOnly(bool) {} @@ -93,7 +93,7 @@ private: class HexWordEditor : public Device::HexWordEditor, public MemoryCaster { Q_OBJECT - TQ_OBJECT + public: HexWordEditor(MemoryRangeType type, Memory &memory, TQWidget *parent); @@ -108,7 +108,7 @@ private: class MemoryRangeEditor : public Device::MemoryRangeEditor, public MemoryCaster { Q_OBJECT - TQ_OBJECT + public: MemoryRangeEditor(MemoryRangeType type, Memory &memory, uint nbLines, uint nbCols, uint wordOffset, int nbWords, TQWidget *parent); @@ -135,7 +135,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); virtual void init(bool first); @@ -148,7 +148,7 @@ private: class MemoryTypeRangeEditor : public MemoryTypeEditor { Q_OBJECT - TQ_OBJECT + public: MemoryTypeRangeEditor(const HexView *hexview, MemoryRangeType type, Memory &memory, TQWidget *parent); virtual void init(bool first); @@ -161,7 +161,7 @@ protected: class MemoryUserIdEditor : public MemoryTypeRangeEditor { Q_OBJECT - TQ_OBJECT + public: MemoryUserIdEditor(const HexView *hexview, Memory &memory, TQWidget *parent); virtual void init(bool first); @@ -182,7 +182,7 @@ private: class MemoryCalibrationEditor : public MemoryTypeEditor { Q_OBJECT - TQ_OBJECT + public: MemoryCalibrationEditor(const HexView *hexview, Memory &memory, TQWidget *parent); virtual void init(bool first); diff --git a/src/devices/pic/gui/pic_prog_group_ui.h b/src/devices/pic/gui/pic_prog_group_ui.h index c203da3..cd489fd 100644 --- a/src/devices/pic/gui/pic_prog_group_ui.h +++ b/src/devices/pic/gui/pic_prog_group_ui.h @@ -17,7 +17,7 @@ namespace Programmer class PicAdvancedDialog : public ::Programmer::AdvancedDialog { Q_OBJECT - TQ_OBJECT + public: PicAdvancedDialog(PicBase &base, TQWidget *parent, const char *name); virtual void updateDisplay(); diff --git a/src/devices/pic/gui/pic_register_view.h b/src/devices/pic/gui/pic_register_view.h index f7a07ac..9c2a654 100644 --- a/src/devices/pic/gui/pic_register_view.h +++ b/src/devices/pic/gui/pic_register_view.h @@ -27,7 +27,7 @@ namespace Pic class BankWidget : public TQFrame { Q_OBJECT - TQ_OBJECT + public: BankWidget(uint bank, TQWidget *parent); void updateView(); @@ -61,7 +61,7 @@ private: class RegisterView : public Register::View { Q_OBJECT - TQ_OBJECT + public: RegisterView(TQWidget *parent); virtual void updateView(); |