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/tools/pic30/pic30_compile.h | |
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/tools/pic30/pic30_compile.h')
-rw-r--r-- | src/tools/pic30/pic30_compile.h | 24 |
1 files changed, 12 insertions, 12 deletions
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; |