diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:01:05 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:01:05 -0600 |
commit | a0fd5320de07548880320658c17501c54c8a3beb (patch) | |
tree | 51c91423ca7a76595041cb7d7206180992c4b914 /src/flowparts | |
parent | 5f338f4e81e145e4c0e1471ef7a8eabcdf7a275f (diff) | |
download | ktechlab-a0fd5320de07548880320658c17501c54c8a3beb.tar.gz ktechlab-a0fd5320de07548880320658c17501c54c8a3beb.zip |
Remove spurious TQ_OBJECT instances
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 9cd2553..3523b4e 100644 --- a/src/flowparts/flowpart.h +++ b/src/flowparts/flowpart.h @@ -34,7 +34,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 2c53d31..c1f278c 100644 --- a/src/flowparts/pinmapping.h +++ b/src/flowparts/pinmapping.h @@ -71,7 +71,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 ); @@ -94,7 +94,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(); ~PinMapDocument(); @@ -122,7 +122,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 ); ~PinMapView(); |