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/gui | |
parent | 5f338f4e81e145e4c0e1471ef7a8eabcdf7a275f (diff) | |
download | ktechlab-a0fd5320de07548880320658c17501c54c8a3beb.tar.gz ktechlab-a0fd5320de07548880320658c17501c54c8a3beb.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/colorcombo.h | 2 | ||||
-rw-r--r-- | src/gui/contexthelp.h | 2 | ||||
-rw-r--r-- | src/gui/doublespinbox.h | 2 | ||||
-rw-r--r-- | src/gui/itemeditor.h | 2 | ||||
-rw-r--r-- | src/gui/itemselector.h | 8 | ||||
-rw-r--r-- | src/gui/logview.h | 2 | ||||
-rw-r--r-- | src/gui/microselectwidget.h | 2 | ||||
-rw-r--r-- | src/gui/microsettingsdlg.h | 2 | ||||
-rw-r--r-- | src/gui/newfiledlg.h | 2 | ||||
-rw-r--r-- | src/gui/orientationwidget.h | 2 | ||||
-rw-r--r-- | src/gui/oscilloscope.h | 2 | ||||
-rw-r--r-- | src/gui/oscilloscopeview.h | 2 | ||||
-rw-r--r-- | src/gui/outputmethoddlg.h | 2 | ||||
-rw-r--r-- | src/gui/pieditor.h | 16 | ||||
-rw-r--r-- | src/gui/plvitem.h | 2 | ||||
-rw-r--r-- | src/gui/probepositioner.h | 2 | ||||
-rw-r--r-- | src/gui/programmerdlg.h | 2 | ||||
-rw-r--r-- | src/gui/projectdlgs.h | 6 | ||||
-rw-r--r-- | src/gui/propertieslistview.h | 2 | ||||
-rw-r--r-- | src/gui/settingsdlg.h | 2 | ||||
-rw-r--r-- | src/gui/symbolviewer.h | 4 |
21 files changed, 34 insertions, 34 deletions
diff --git a/src/gui/colorcombo.h b/src/gui/colorcombo.h index 65af079..40ce598 100644 --- a/src/gui/colorcombo.h +++ b/src/gui/colorcombo.h @@ -23,7 +23,7 @@ which colours are displayed to be changed. class ColorCombo : public TQComboBox { Q_OBJECT - TQ_OBJECT + TQ_PROPERTY( TQColor color READ color WRITE setColor ) public: diff --git a/src/gui/contexthelp.h b/src/gui/contexthelp.h index 428ac1b..452e39f 100644 --- a/src/gui/contexthelp.h +++ b/src/gui/contexthelp.h @@ -30,7 +30,7 @@ in a ICNDocument. class ContextHelp : public TQWidget { Q_OBJECT - TQ_OBJECT + public: static ContextHelp * self( KateMDI::ToolView * parent = 0l ); static TQString toolViewIdentifier() { return "ContextHelp"; } diff --git a/src/gui/doublespinbox.h b/src/gui/doublespinbox.h index 9a412fb..079f2b5 100644 --- a/src/gui/doublespinbox.h +++ b/src/gui/doublespinbox.h @@ -23,7 +23,7 @@ spin box plus the SI magnitude symbol it is showing class DoubleSpinBox : public TQSpinBox { Q_OBJECT - TQ_OBJECT + public: DoubleSpinBox( double lower, double upper, double minAbs, double value, const TQString & unit, TQWidget * parent = 0 ); virtual ~DoubleSpinBox(); diff --git a/src/gui/itemeditor.h b/src/gui/itemeditor.h index 506e7c0..998a120 100644 --- a/src/gui/itemeditor.h +++ b/src/gui/itemeditor.h @@ -36,7 +36,7 @@ namespace KateMDI { class ToolView; } class ItemEditor : public TQWidget { Q_OBJECT - TQ_OBJECT + public: static ItemEditor * self( KateMDI::ToolView * parent = 0l ); ~ItemEditor(); diff --git a/src/gui/itemselector.h b/src/gui/itemselector.h index d0fd691..2b327bf 100644 --- a/src/gui/itemselector.h +++ b/src/gui/itemselector.h @@ -58,7 +58,7 @@ class ILVItem : public TQObject, public KListViewItem class ItemSelector : public KListView { Q_OBJECT - TQ_OBJECT + public: ItemSelector( TQWidget *parent, const char *name ); ~ItemSelector(); @@ -122,7 +122,7 @@ class ItemSelector : public KListView class ComponentSelector : public ItemSelector { Q_OBJECT - TQ_OBJECT + public: static ComponentSelector * self( KateMDI::ToolView * parent = 0l ); static TQString toolViewIdentifier() { return "ComponentSelector"; } @@ -140,7 +140,7 @@ class ComponentSelector : public ItemSelector class FlowPartSelector : public ItemSelector { Q_OBJECT - TQ_OBJECT + public: static FlowPartSelector * self( KateMDI::ToolView * parent = 0l ); static TQString toolViewIdentifier() { return "FlowPartSelector"; } @@ -157,7 +157,7 @@ class FlowPartSelector : public ItemSelector class MechanicsSelector : public ItemSelector { Q_OBJECT - TQ_OBJECT + public: static MechanicsSelector * self( KateMDI::ToolView * parent = 0l ); static TQString toolViewIdentifier() { return "MechanicsSelector"; } diff --git a/src/gui/logview.h b/src/gui/logview.h index 74663d4..bdbef38 100644 --- a/src/gui/logview.h +++ b/src/gui/logview.h @@ -42,7 +42,7 @@ Base class for logviews (eg GpasmInterface) which output information, warnings, class LogView : public KTextEdit { Q_OBJECT - TQ_OBJECT + public: LogView( KateMDI::ToolView * parent, const char *name = 0 ); ~LogView(); diff --git a/src/gui/microselectwidget.h b/src/gui/microselectwidget.h index 81de13e..b5d7801 100644 --- a/src/gui/microselectwidget.h +++ b/src/gui/microselectwidget.h @@ -27,7 +27,7 @@ class KComboBox; class MicroSelectWidget : public TQGroupBox { Q_OBJECT - TQ_OBJECT + public: MicroSelectWidget( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/src/gui/microsettingsdlg.h b/src/gui/microsettingsdlg.h index e89b0f0..e12d9b5 100644 --- a/src/gui/microsettingsdlg.h +++ b/src/gui/microsettingsdlg.h @@ -31,7 +31,7 @@ typedef TQMap< TQString, PinMapping > PinMappingMap; class MicroSettingsDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: MicroSettingsDlg( MicroSettings *_microSettings, TQWidget *parent = 0L, const char *name = 0L ); ~MicroSettingsDlg(); diff --git a/src/gui/newfiledlg.h b/src/gui/newfiledlg.h index 19a1b85..4f13fd6 100644 --- a/src/gui/newfiledlg.h +++ b/src/gui/newfiledlg.h @@ -25,7 +25,7 @@ A standard dialog for getting file details from the user for a new project class NewFileDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: NewFileDlg( TQWidget *parent ); diff --git a/src/gui/orientationwidget.h b/src/gui/orientationwidget.h index a48bf37..73a39e4 100644 --- a/src/gui/orientationwidget.h +++ b/src/gui/orientationwidget.h @@ -25,7 +25,7 @@ class TQPushButton; class OrientationWidget : public TQWidget { Q_OBJECT - TQ_OBJECT + public: OrientationWidget( TQWidget *parent = 0l, const char *name = 0l ); ~OrientationWidget(); diff --git a/src/gui/oscilloscope.h b/src/gui/oscilloscope.h index 0ded495..b0f59ac 100644 --- a/src/gui/oscilloscope.h +++ b/src/gui/oscilloscope.h @@ -76,7 +76,7 @@ void addOscilloscopeAsToolView( KTechlab *ktechlab ); class Oscilloscope : public OscilloscopeWidget { Q_OBJECT - TQ_OBJECT + public: static Oscilloscope * self( KateMDI::ToolView * parent = 0l ); static TQString toolViewIdentifier() { return "Oscilloscope"; } diff --git a/src/gui/oscilloscopeview.h b/src/gui/oscilloscopeview.h index 533c92e..0332607 100644 --- a/src/gui/oscilloscopeview.h +++ b/src/gui/oscilloscopeview.h @@ -26,7 +26,7 @@ class TQTimer; class OscilloscopeView : public TQFrame { Q_OBJECT - TQ_OBJECT + public: OscilloscopeView( TQWidget *parent, const char *name = 0 ); virtual ~OscilloscopeView(); diff --git a/src/gui/outputmethoddlg.h b/src/gui/outputmethoddlg.h index b18f8d7..6e7a914 100644 --- a/src/gui/outputmethoddlg.h +++ b/src/gui/outputmethoddlg.h @@ -62,7 +62,7 @@ class OutputMethodInfo class OutputMethodDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: /** * @param Caption The caption of the dialog window diff --git a/src/gui/pieditor.h b/src/gui/pieditor.h index 712959a..03fe2c1 100644 --- a/src/gui/pieditor.h +++ b/src/gui/pieditor.h @@ -30,7 +30,7 @@ class Variant; class PIEditor : public TQWidget { Q_OBJECT - TQ_OBJECT + public: PIEditor(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0); ~PIEditor(); @@ -53,7 +53,7 @@ class PIEditor : public TQWidget class PIBool : public PIEditor { Q_OBJECT - TQ_OBJECT + public: PIBool( TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0 ); ~PIBool(); @@ -74,7 +74,7 @@ class PIBool : public PIEditor class PIColor : public PIEditor { Q_OBJECT - TQ_OBJECT + public: PIColor(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0); ~PIColor(); @@ -96,7 +96,7 @@ Allows the editing of double precision numerical values, using the DoubleNum wid class PIDouble : public PIEditor { Q_OBJECT - TQ_OBJECT + public: PIDouble(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0); ~PIDouble(); @@ -116,7 +116,7 @@ class PIDouble : public PIEditor class PIFilename : public PIEditor { Q_OBJECT - TQ_OBJECT + public: PIFilename(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0); ~PIFilename(); @@ -138,7 +138,7 @@ class PIFilename : public PIEditor class PIInt : public PIEditor { Q_OBJECT - TQ_OBJECT + public: PIInt( const TQString &id, Variant *data, TQWidget *parent = 0, const char *name = 0); ~PIInt(); @@ -158,7 +158,7 @@ class PIInt : public PIEditor class PILineEdit : public PIEditor { Q_OBJECT - TQ_OBJECT + public: PILineEdit(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0); ~PILineEdit(); @@ -178,7 +178,7 @@ class PILineEdit : public PIEditor class PIStringCombo : public PIEditor { Q_OBJECT - TQ_OBJECT + public: PIStringCombo(TQString id, Variant *data, TQWidget *parent, const char *name = 0); ~PIStringCombo(); diff --git a/src/gui/plvitem.h b/src/gui/plvitem.h index 9dc1763..3e7ea12 100644 --- a/src/gui/plvitem.h +++ b/src/gui/plvitem.h @@ -27,7 +27,7 @@ Basic item, which holds the Variant data and Id for an item class PLVItem : public TQObject, public KListViewItem { Q_OBJECT - TQ_OBJECT + public: PLVItem( KListView *listview, const TQString &id, Variant * data ); ~PLVItem(); diff --git a/src/gui/probepositioner.h b/src/gui/probepositioner.h index a28c6c6..daa1110 100644 --- a/src/gui/probepositioner.h +++ b/src/gui/probepositioner.h @@ -26,7 +26,7 @@ Widget for positioning the output of Probes in the OscilloscopeView class ProbePositioner : public TQWidget { Q_OBJECT - TQ_OBJECT + public: ProbePositioner(TQWidget *parent = 0, const char *name = 0); ~ProbePositioner(); diff --git a/src/gui/programmerdlg.h b/src/gui/programmerdlg.h index 20431cd..0464b91 100644 --- a/src/gui/programmerdlg.h +++ b/src/gui/programmerdlg.h @@ -25,7 +25,7 @@ class ProgrammerWidget; class ProgrammerDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: /** * Create a new ProgrammerDlg with the PIC type set to picID. Other diff --git a/src/gui/projectdlgs.h b/src/gui/projectdlgs.h index 78ca741..56fb58b 100644 --- a/src/gui/projectdlgs.h +++ b/src/gui/projectdlgs.h @@ -30,7 +30,7 @@ A standard dialog for getting project details from the user for a new project class NewProjectDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: NewProjectDlg( TQWidget * parent ); @@ -73,7 +73,7 @@ class NewProjectDlg : public KDialogBase class CreateSubprojectDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: CreateSubprojectDlg( TQWidget *parent = 0 ); ~CreateSubprojectDlg(); @@ -113,7 +113,7 @@ class CreateSubprojectDlg : public KDialogBase class LinkerOptionsDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: LinkerOptionsDlg( LinkerOptions * linkingOptions, TQWidget *parent = 0 ); virtual ~LinkerOptionsDlg(); diff --git a/src/gui/propertieslistview.h b/src/gui/propertieslistview.h index 31a5df4..5073455 100644 --- a/src/gui/propertieslistview.h +++ b/src/gui/propertieslistview.h @@ -29,7 +29,7 @@ typedef TQMap< TQString, PLVItem * > PLVItemMap; class PropertiesListView : public KListView { Q_OBJECT - TQ_OBJECT + public: PropertiesListView( TQWidget *parent = 0l, const char *name = 0l ); ~PropertiesListView(); diff --git a/src/gui/settingsdlg.h b/src/gui/settingsdlg.h index 9f2af44..f43f224 100644 --- a/src/gui/settingsdlg.h +++ b/src/gui/settingsdlg.h @@ -29,7 +29,7 @@ class SDCCOptionsWidget; class SettingsDlg : public KConfigDialog { Q_OBJECT - TQ_OBJECT + public: SettingsDlg( TQWidget *parent, const char *name, KConfigSkeleton *config ); ~SettingsDlg(); diff --git a/src/gui/symbolviewer.h b/src/gui/symbolviewer.h index ac085eb..56d599d 100644 --- a/src/gui/symbolviewer.h +++ b/src/gui/symbolviewer.h @@ -30,7 +30,7 @@ namespace KateMDI { class ToolView; } class SymbolViewer : public TQWidget { Q_OBJECT - TQ_OBJECT + public: static SymbolViewer * self( KateMDI::ToolView * parent = 0l ); static TQString toolViewIdentifier() { return "SymbolViewer"; } @@ -87,7 +87,7 @@ class SymbolViewer : public TQWidget class SymbolViewerItem : public TQObject, public KListViewItem { Q_OBJECT - TQ_OBJECT + public: SymbolViewerItem( SymbolViewer * symbolViewer, RegisterInfo * registerInfo ); |