diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:00:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:00:43 -0600 |
commit | 08c6ddb04bc1febeedd0f76aff43ea2a6397234c (patch) | |
tree | 0d8c0fa5412f0b643be313d9a3e14b7055648908 /src | |
parent | 4708fa52763ff84b9391e9038b3c5e6e17a75aaa (diff) | |
download | kpicosim-08c6ddb04bc1febeedd0f76aff43ea2a6397234c.tar.gz kpicosim-08c6ddb04bc1febeedd0f76aff43ea2a6397234c.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src')
-rwxr-xr-x | src/codeeditor.h | 2 | ||||
-rw-r--r-- | src/jtagprogrammer.h | 2 | ||||
-rwxr-xr-x | src/kexportdialog.h | 2 | ||||
-rw-r--r-- | src/kjtagdialog.h | 2 | ||||
-rwxr-xr-x | src/kpicosim.h | 2 | ||||
-rwxr-xr-x | src/kport.h | 2 | ||||
-rwxr-xr-x | src/kportview.h | 2 | ||||
-rwxr-xr-x | src/kprocessorview.h | 4 | ||||
-rwxr-xr-x | src/kscratchpadview.h | 2 | ||||
-rwxr-xr-x | src/kserialview.h | 4 | ||||
-rwxr-xr-x | src/ksimulator.h | 2 |
11 files changed, 13 insertions, 13 deletions
diff --git a/src/codeeditor.h b/src/codeeditor.h index db90ad8..0bfbd09 100755 --- a/src/codeeditor.h +++ b/src/codeeditor.h @@ -28,7 +28,7 @@ class CodeEditor : public TQWidget { Q_OBJECT - TQ_OBJECT + public: CodeEditor(TQWidget *parent = 0, const char *name = 0); ~CodeEditor(); diff --git a/src/jtagprogrammer.h b/src/jtagprogrammer.h index 6506aab..d5ad78c 100644 --- a/src/jtagprogrammer.h +++ b/src/jtagprogrammer.h @@ -26,7 +26,7 @@ class JTAGProgrammer : public TQObject { Q_OBJECT - TQ_OBJECT + public: JTAGProgrammer( TQObject *parent ); diff --git a/src/kexportdialog.h b/src/kexportdialog.h index b52293d..2c453b7 100755 --- a/src/kexportdialog.h +++ b/src/kexportdialog.h @@ -30,7 +30,7 @@ class KExportDialog : public TQDialog { Q_OBJECT - TQ_OBJECT + public: KExportDialog(TQWidget *parent = 0, const char *name = 0 ); ~KExportDialog(); diff --git a/src/kjtagdialog.h b/src/kjtagdialog.h index a99d85f..9d66894 100644 --- a/src/kjtagdialog.h +++ b/src/kjtagdialog.h @@ -36,7 +36,7 @@ class KJTAGDialog : public TQDialog { Q_OBJECT - TQ_OBJECT + public: KJTAGDialog(TQWidget *parent); ~KJTAGDialog(); diff --git a/src/kpicosim.h b/src/kpicosim.h index bfc8822..dd3c0d4 100755 --- a/src/kpicosim.h +++ b/src/kpicosim.h @@ -43,7 +43,7 @@ class KPicoSim : public KMainWindow { Q_OBJECT - TQ_OBJECT + public: KPicoSim(); virtual ~KPicoSim(); diff --git a/src/kport.h b/src/kport.h index 16fcb7f..5109fff 100755 --- a/src/kport.h +++ b/src/kport.h @@ -26,7 +26,7 @@ class KPort : public TQObject, public CIOPort { Q_OBJECT - TQ_OBJECT + public: KPort( unsigned char portID ) : CIOPort( portID ) {} virtual ~KPort() {} ; diff --git a/src/kportview.h b/src/kportview.h index b5ffec4..ede1c85 100755 --- a/src/kportview.h +++ b/src/kportview.h @@ -29,7 +29,7 @@ class KPortView : public KToolBar { Q_OBJECT - TQ_OBJECT + public: KPortView( CPicoBlaze *cpu, TQWidget *parent = 0, const char *name = 0); ~KPortView(); diff --git a/src/kprocessorview.h b/src/kprocessorview.h index 541f3be..ff7a4e1 100755 --- a/src/kprocessorview.h +++ b/src/kprocessorview.h @@ -10,7 +10,7 @@ class MyListView : public KListView { Q_OBJECT - TQ_OBJECT + public: MyListView(TQWidget *parent) ; ~MyListView() ; @@ -30,7 +30,7 @@ class MyListView : public KListView class KProcessorView : public KToolBar { Q_OBJECT - TQ_OBJECT + public: KProcessorView(TQWidget *parent = 0, const char *name = 0); ~KProcessorView(); diff --git a/src/kscratchpadview.h b/src/kscratchpadview.h index dbc8e0f..fd990af 100755 --- a/src/kscratchpadview.h +++ b/src/kscratchpadview.h @@ -26,7 +26,7 @@ class KScratchpadView : public KToolBar { Q_OBJECT - TQ_OBJECT + public: KScratchpadView(TQWidget *parent = 0, const char *name = 0); ~KScratchpadView(); diff --git a/src/kserialview.h b/src/kserialview.h index be398d4..54f3e94 100755 --- a/src/kserialview.h +++ b/src/kserialview.h @@ -33,7 +33,7 @@ class KSerialWindow : public KTextEdit { Q_OBJECT - TQ_OBJECT + public: KSerialWindow( TQWidget *parent ) : KTextEdit( parent ) { @@ -72,7 +72,7 @@ class KSerialWindow : public KTextEdit class KSerialView : public TQWidget { Q_OBJECT - TQ_OBJECT + public: KSerialView( CPicoBlaze *cpu, TQWidget *parent ); ~KSerialView(); diff --git a/src/ksimulator.h b/src/ksimulator.h index f81b9ee..7421d61 100755 --- a/src/ksimulator.h +++ b/src/ksimulator.h @@ -37,7 +37,7 @@ class KSimulator : public TQObject { Q_OBJECT - TQ_OBJECT + public: KSimulator(TQObject *parent = 0, const char *name = 0); ~KSimulator(); |