From ef93b5a56c66ac5e4215eefe5cbbc00d384e5869 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 12:35:34 +0900 Subject: Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro (cherry picked from commit e860f57ae80a5d37c62b28271367a94959be6172) --- src/tools/picc/gui/picc_ui.h | 2 +- src/tools/picc/picc_compile.h | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/tools/picc') 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; -- cgit v1.2.1