diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 12:35:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-23 18:48:40 +0900 |
commit | d9fab094136a7dcb463d99d499f5526701ad1e48 (patch) | |
tree | 8a0e5c360ed01e93c8a1380e0df9b22769cbb887 /src/flowparts | |
parent | 397fe4548de3354fd1e3806d66281619c71cc6aa (diff) | |
download | ktechlab-d9fab094136a7dcb463d99d499f5526701ad1e48.tar.gz ktechlab-d9fab094136a7dcb463d99d499f5526701ad1e48.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 377a74382c0f10b2d3ec30d9b2337e8409bec58f)
Diffstat (limited to 'src/flowparts')
-rw-r--r-- | src/flowparts/flowpart.h | 2 | ||||
-rw-r--r-- | src/flowparts/pinmapping.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/flowparts/flowpart.h b/src/flowparts/flowpart.h index 3523b4e..2b3be1d 100644 --- a/src/flowparts/flowpart.h +++ b/src/flowparts/flowpart.h @@ -33,7 +33,7 @@ that you should reinherit for generating the assembly code. */ class FlowPart : public CNItem { -Q_OBJECT +TQ_OBJECT public: enum FlowSymbol diff --git a/src/flowparts/pinmapping.h b/src/flowparts/pinmapping.h index c1f278c..3ba3f51 100644 --- a/src/flowparts/pinmapping.h +++ b/src/flowparts/pinmapping.h @@ -70,7 +70,7 @@ Dialog for editing a Pin Mapping */ class PinMapEditor : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: PinMapEditor( PinMapping * PinMapping, MicroInfo * Info, TQWidget * parent, const char * name ); @@ -93,7 +93,7 @@ For use with FlowParts that require a pin map (e.g. Keypad and Seven Segment). */ class PinMapDocument : public ICNDocument { - Q_OBJECT + TQ_OBJECT public: PinMapDocument(); @@ -121,7 +121,7 @@ class PinMapDocument : public ICNDocument */ class PinMapView : public ICNView { - Q_OBJECT + TQ_OBJECT public: PinMapView( PinMapDocument * pinMapDocument, ViewContainer * viewContainer, uint viewAreaId, const char * name = 0l ); |