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/tools/pic30 | |
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/tools/pic30')
-rw-r--r-- | src/tools/pic30/gui/pic30_ui.h | 2 | ||||
-rw-r--r-- | src/tools/pic30/pic30_compile.h | 24 |
2 files changed, 13 insertions, 13 deletions
diff --git a/src/tools/pic30/gui/pic30_ui.h b/src/tools/pic30/gui/pic30_ui.h index 7bb1c0d..beac9de 100644 --- a/src/tools/pic30/gui/pic30_ui.h +++ b/src/tools/pic30/gui/pic30_ui.h @@ -18,7 +18,7 @@ namespace PIC30 //---------------------------------------------------------------------------- class ConfigWidget : public ToolConfigWidget { -Q_OBJECT +TQ_OBJECT public: ConfigWidget(Project *project); diff --git a/src/tools/pic30/pic30_compile.h b/src/tools/pic30/pic30_compile.h index f65316c..f186043 100644 --- a/src/tools/pic30/pic30_compile.h +++ b/src/tools/pic30/pic30_compile.h @@ -16,7 +16,7 @@ namespace PIC30 //----------------------------------------------------------------------------- class Process : public Compile::Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString deviceName() const { return _data.device; } @@ -25,7 +25,7 @@ protected: //----------------------------------------------------------------------------- class CompileFile : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQStringList genericArguments(const Compile::Config &config) const; @@ -36,7 +36,7 @@ protected: //----------------------------------------------------------------------------- class CompileStandaloneFile : public CompileFile { -Q_OBJECT +TQ_OBJECT protected: virtual TQStringList genericArguments(const Compile::Config &config) const; @@ -46,7 +46,7 @@ protected: //----------------------------------------------------------------------------- class CompileProjectFile : public CompileFile { -Q_OBJECT +TQ_OBJECT protected: virtual TQStringList genericArguments(const Compile::Config &config) const; @@ -55,7 +55,7 @@ protected: //----------------------------------------------------------------------------- class AssembleFile : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString outputFilepath() const { return filepath(PURL::Object); } @@ -67,7 +67,7 @@ protected: //----------------------------------------------------------------------------- class AssembleStandaloneFile : public AssembleFile { -Q_OBJECT +TQ_OBJECT protected: virtual TQStringList genericArguments(const Compile::Config &config) const; @@ -76,7 +76,7 @@ protected: //----------------------------------------------------------------------------- class AssembleProjectFile : public AssembleFile { -Q_OBJECT +TQ_OBJECT protected: virtual TQStringList genericArguments(const Compile::Config &config) const; @@ -85,7 +85,7 @@ protected: //----------------------------------------------------------------------------- class Link : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString outputFilepath() const; @@ -97,7 +97,7 @@ protected: //----------------------------------------------------------------------------- class LinkStandalone : public Link { -Q_OBJECT +TQ_OBJECT protected: virtual TQStringList genericArguments(const Compile::Config &config) const; @@ -106,7 +106,7 @@ protected: //----------------------------------------------------------------------------- class LinkProject : public Link { -Q_OBJECT +TQ_OBJECT protected: virtual TQStringList genericArguments(const Compile::Config &config) const; @@ -115,7 +115,7 @@ protected: //----------------------------------------------------------------------------- class LibraryProject : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQStringList genericArguments(const Compile::Config &config) const; @@ -126,7 +126,7 @@ protected: //----------------------------------------------------------------------------- class BinToHex : public Process { -Q_OBJECT +TQ_OBJECT protected: virtual TQString inputFilepath(uint i) const; |