diff options
author | Timothy Pearson <[email protected]> | 2012-02-17 16:00:39 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-17 16:00:39 -0600 |
commit | 2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0 (patch) | |
tree | b2a50806758f457480546bccb342017d9c971bd8 /filters/kformula | |
parent | 3464ad940b78776e534eded37c3ae842cae52ad8 (diff) | |
download | koffice-2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0.tar.gz koffice-2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'filters/kformula')
-rw-r--r-- | filters/kformula/latex/latexexport.h | 2 | ||||
-rw-r--r-- | filters/kformula/mathml/mathmlexport.h | 2 | ||||
-rw-r--r-- | filters/kformula/mathml/mathmlimport.h | 2 | ||||
-rw-r--r-- | filters/kformula/png/pngexport.h | 2 | ||||
-rw-r--r-- | filters/kformula/png/pngexportdia.h | 2 | ||||
-rw-r--r-- | filters/kformula/svg/svgexport.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/filters/kformula/latex/latexexport.h b/filters/kformula/latex/latexexport.h index 83672fae..173c7f38 100644 --- a/filters/kformula/latex/latexexport.h +++ b/filters/kformula/latex/latexexport.h @@ -28,7 +28,7 @@ class TQStringList; class LATEXExport : public KoFilter { Q_OBJECT - TQ_OBJECT + public: LATEXExport( KoFilter *parent, const char *name, const TQStringList& ); virtual ~LATEXExport() {} diff --git a/filters/kformula/mathml/mathmlexport.h b/filters/kformula/mathml/mathmlexport.h index 2a442a22..464a6bd6 100644 --- a/filters/kformula/mathml/mathmlexport.h +++ b/filters/kformula/mathml/mathmlexport.h @@ -28,7 +28,7 @@ class TQStringList; class MathMLExport : public KoFilter { Q_OBJECT - TQ_OBJECT + public: MathMLExport( KoFilter *parent, const char *name, const TQStringList& ); virtual ~MathMLExport() {} diff --git a/filters/kformula/mathml/mathmlimport.h b/filters/kformula/mathml/mathmlimport.h index a2f54182..d1de7b2a 100644 --- a/filters/kformula/mathml/mathmlimport.h +++ b/filters/kformula/mathml/mathmlimport.h @@ -31,7 +31,7 @@ class MathMLImport : public KoFilter { Q_OBJECT - TQ_OBJECT + public: MathMLImport(KoFilter *parent, const char *name, const TQStringList&); virtual ~MathMLImport() {} diff --git a/filters/kformula/png/pngexport.h b/filters/kformula/png/pngexport.h index eb71df94..f9b2ff90 100644 --- a/filters/kformula/png/pngexport.h +++ b/filters/kformula/png/pngexport.h @@ -28,7 +28,7 @@ class TQStringList; class PNGExport : public KoFilter { Q_OBJECT - TQ_OBJECT + public: PNGExport( KoFilter *parent, const char *name, const TQStringList& ); virtual ~PNGExport() {} diff --git a/filters/kformula/png/pngexportdia.h b/filters/kformula/png/pngexportdia.h index 4a1795be..28d91979 100644 --- a/filters/kformula/png/pngexportdia.h +++ b/filters/kformula/png/pngexportdia.h @@ -38,7 +38,7 @@ namespace KFormula { class PNGExportDia : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: PNGExportDia( const TQDomDocument &dom, const TQString &outFile, TQWidget *parent=0L, const char *name=0L ); diff --git a/filters/kformula/svg/svgexport.h b/filters/kformula/svg/svgexport.h index 0296e574..2bbc8c34 100644 --- a/filters/kformula/svg/svgexport.h +++ b/filters/kformula/svg/svgexport.h @@ -26,7 +26,7 @@ class SvgExport : public KoFilter { Q_OBJECT - TQ_OBJECT + public: SvgExport(KoFilter *parent, const char *name, const TQStringList&); |