diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 12:35:34 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-23 18:50:27 +0900 |
commit | ef93b5a56c66ac5e4215eefe5cbbc00d384e5869 (patch) | |
tree | 0ce9e79b1513e8debdd969ad1869f46393214b24 /src/tools/picc | |
parent | cd145010cc926e0ade6af1fbe6d7230839f84599 (diff) | |
download | piklab-ef93b5a56c66ac5e4215eefe5cbbc00d384e5869.tar.gz piklab-ef93b5a56c66ac5e4215eefe5cbbc00d384e5869.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit e860f57ae80a5d37c62b28271367a94959be6172)
Diffstat (limited to 'src/tools/picc')
-rw-r--r-- | src/tools/picc/gui/picc_ui.h | 2 | ||||
-rw-r--r-- | src/tools/picc/picc_compile.h | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/tools/picc/gui/picc_ui.h b/src/tools/picc/gui/picc_ui.h index f3f6b96..8022819 100644 --- a/src/tools/picc/gui/picc_ui.h +++ b/src/tools/picc/gui/picc_ui.h @@ -17,7 +17,7 @@ namespace PICC //---------------------------------------------------------------------------- class ConfigWidget : public ToolConfigWidget { -Q_OBJECT +TQ_OBJECT public: ConfigWidget(Project *project); diff --git a/src/tools/picc/picc_compile.h b/src/tools/picc/picc_compile.h index 7613a21..ef2e70d 100644 --- a/src/tools/picc/picc_compile.h +++ b/src/tools/picc/picc_compile.h @@ -16,7 +16,7 @@ namespace PICC //----------------------------------------------------------------------------- class Process : public Compile::Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString deviceName() const { return _data.device; } @@ -28,7 +28,7 @@ protected: //----------------------------------------------------------------------------- class CompileStandaloneFile : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString outputFiles() const; @@ -38,7 +38,7 @@ protected: //----------------------------------------------------------------------------- class CompileProjectFile : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString outputFiles() const; @@ -48,7 +48,7 @@ protected: //----------------------------------------------------------------------------- class AssembleStandaloneFile : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString outputFiles() const; @@ -58,7 +58,7 @@ protected: //----------------------------------------------------------------------------- class AssembleProjectFile : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString outputFiles() const; @@ -68,7 +68,7 @@ protected: //----------------------------------------------------------------------------- class LinkProject : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString outputFiles() const; @@ -78,7 +78,7 @@ protected: //----------------------------------------------------------------------------- class LibraryProject : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString outputFiles() const; |