summaryrefslogtreecommitdiffstats
path: root/src/tools/picc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-07-20 12:35:34 +0900
committerMichele Calgaro <[email protected]>2023-07-23 18:50:27 +0900
commitef93b5a56c66ac5e4215eefe5cbbc00d384e5869 (patch)
tree0ce9e79b1513e8debdd969ad1869f46393214b24 /src/tools/picc
parentcd145010cc926e0ade6af1fbe6d7230839f84599 (diff)
downloadpiklab-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.h2
-rw-r--r--src/tools/picc/picc_compile.h14
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;