summaryrefslogtreecommitdiffstats
path: root/filters/kformula
diff options
context:
space:
mode:
Diffstat (limited to 'filters/kformula')
-rw-r--r--filters/kformula/latex/latexexport.cc2
-rw-r--r--filters/kformula/latex/latexexport.h2
-rw-r--r--filters/kformula/mathml/mathmlexport.cc2
-rw-r--r--filters/kformula/mathml/mathmlexport.h2
-rw-r--r--filters/kformula/mathml/mathmlimport.h2
-rw-r--r--filters/kformula/png/pngexport.cc2
-rw-r--r--filters/kformula/png/pngexport.h2
-rw-r--r--filters/kformula/png/pngexportdia.cc4
-rw-r--r--filters/kformula/png/pngexportdia.h2
-rw-r--r--filters/kformula/svg/svgexport.h2
10 files changed, 11 insertions, 11 deletions
diff --git a/filters/kformula/latex/latexexport.cc b/filters/kformula/latex/latexexport.cc
index b280df1c..77488fa9 100644
--- a/filters/kformula/latex/latexexport.cc
+++ b/filters/kformula/latex/latexexport.cc
@@ -40,7 +40,7 @@ typedef KGenericFactory<LATEXExport, KoFilter> LATEXExportFactory;
K_EXPORT_COMPONENT_FACTORY( libkfolatexexport, LATEXExportFactory( "kofficefilters" ) )
-LATEXExport::LATEXExport( KoFilter */*tqparent*/, const char */*name*/, const TQStringList& )
+LATEXExport::LATEXExport( KoFilter */*parent*/, const char */*name*/, const TQStringList& )
: KoFilter()
{
}
diff --git a/filters/kformula/latex/latexexport.h b/filters/kformula/latex/latexexport.h
index 1da761be..091ed125 100644
--- a/filters/kformula/latex/latexexport.h
+++ b/filters/kformula/latex/latexexport.h
@@ -30,7 +30,7 @@ class LATEXExport : public KoFilter
Q_OBJECT
TQ_OBJECT
public:
- LATEXExport( KoFilter *tqparent, const char *name, const TQStringList& );
+ LATEXExport( KoFilter *parent, const char *name, const TQStringList& );
virtual ~LATEXExport() {}
virtual KoFilter::ConversiontqStatus convert( const TQCString& from, const TQCString& to );
diff --git a/filters/kformula/mathml/mathmlexport.cc b/filters/kformula/mathml/mathmlexport.cc
index 667c18ef..507c13a2 100644
--- a/filters/kformula/mathml/mathmlexport.cc
+++ b/filters/kformula/mathml/mathmlexport.cc
@@ -40,7 +40,7 @@ typedef KGenericFactory<MathMLExport, KoFilter> MathMLExportFactory;
K_EXPORT_COMPONENT_FACTORY( libkfomathmlexport, MathMLExportFactory( "kofficefilters" ) )
-MathMLExport::MathMLExport( KoFilter */*tqparent*/, const char */*name*/, const TQStringList& )
+MathMLExport::MathMLExport( KoFilter */*parent*/, const char */*name*/, const TQStringList& )
: KoFilter()
{
}
diff --git a/filters/kformula/mathml/mathmlexport.h b/filters/kformula/mathml/mathmlexport.h
index 7f3eee19..a49b837b 100644
--- a/filters/kformula/mathml/mathmlexport.h
+++ b/filters/kformula/mathml/mathmlexport.h
@@ -30,7 +30,7 @@ class MathMLExport : public KoFilter
Q_OBJECT
TQ_OBJECT
public:
- MathMLExport( KoFilter *tqparent, const char *name, const TQStringList& );
+ MathMLExport( KoFilter *parent, const char *name, const TQStringList& );
virtual ~MathMLExport() {}
virtual KoFilter::ConversiontqStatus convert( const TQCString& from, const TQCString& to );
diff --git a/filters/kformula/mathml/mathmlimport.h b/filters/kformula/mathml/mathmlimport.h
index b1d1152f..a4a28e18 100644
--- a/filters/kformula/mathml/mathmlimport.h
+++ b/filters/kformula/mathml/mathmlimport.h
@@ -33,7 +33,7 @@ class MathMLImport : public KoFilter
Q_OBJECT
TQ_OBJECT
public:
- MathMLImport(KoFilter *tqparent, const char *name, const TQStringList&);
+ MathMLImport(KoFilter *parent, const char *name, const TQStringList&);
virtual ~MathMLImport() {}
virtual KoFilter::ConversiontqStatus convert( const TQCString& from, const TQCString& to );
diff --git a/filters/kformula/png/pngexport.cc b/filters/kformula/png/pngexport.cc
index b8d0f3d3..c6d3611e 100644
--- a/filters/kformula/png/pngexport.cc
+++ b/filters/kformula/png/pngexport.cc
@@ -40,7 +40,7 @@ typedef KGenericFactory<PNGExport, KoFilter> PNGExportFactory;
K_EXPORT_COMPONENT_FACTORY( libkfopngexport, PNGExportFactory( "kofficefilters" ) )
-PNGExport::PNGExport( KoFilter */*tqparent*/, const char */*name*/, const TQStringList& )
+PNGExport::PNGExport( KoFilter */*parent*/, const char */*name*/, const TQStringList& )
: KoFilter()
{
}
diff --git a/filters/kformula/png/pngexport.h b/filters/kformula/png/pngexport.h
index 54c121e3..8dd3de34 100644
--- a/filters/kformula/png/pngexport.h
+++ b/filters/kformula/png/pngexport.h
@@ -30,7 +30,7 @@ class PNGExport : public KoFilter
Q_OBJECT
TQ_OBJECT
public:
- PNGExport( KoFilter *tqparent, const char *name, const TQStringList& );
+ PNGExport( KoFilter *parent, const char *name, const TQStringList& );
virtual ~PNGExport() {}
virtual KoFilter::ConversiontqStatus convert( const TQCString& from, const TQCString& to );
diff --git a/filters/kformula/png/pngexportdia.cc b/filters/kformula/png/pngexportdia.cc
index e366882c..fb0407e0 100644
--- a/filters/kformula/png/pngexportdia.cc
+++ b/filters/kformula/png/pngexportdia.cc
@@ -39,8 +39,8 @@
#include "pngexportdia.h"
#include <knuminput.h>
-PNGExportDia::PNGExportDia( const TQDomDocument &dom, const TQString &outFile, TQWidget *tqparent, const char *name )
- : KDialogBase( tqparent, name, true, i18n("PNG Export Filter Parameters" ), Ok|Cancel ),
+PNGExportDia::PNGExportDia( const TQDomDocument &dom, const TQString &outFile, TQWidget *parent, const char *name )
+ : KDialogBase( parent, name, true, i18n("PNG Export Filter Parameters" ), Ok|Cancel ),
_fileOut( outFile )
{
kapp->restoreOverrideCursor();
diff --git a/filters/kformula/png/pngexportdia.h b/filters/kformula/png/pngexportdia.h
index 4d04d429..4a1795be 100644
--- a/filters/kformula/png/pngexportdia.h
+++ b/filters/kformula/png/pngexportdia.h
@@ -41,7 +41,7 @@ class PNGExportDia : public KDialogBase
TQ_OBJECT
public:
- PNGExportDia( const TQDomDocument &dom, const TQString &outFile, TQWidget *tqparent=0L, const char *name=0L );
+ PNGExportDia( const TQDomDocument &dom, const TQString &outFile, TQWidget *parent=0L, const char *name=0L );
~PNGExportDia();
public slots:
diff --git a/filters/kformula/svg/svgexport.h b/filters/kformula/svg/svgexport.h
index 98d4d8d4..65a5cef1 100644
--- a/filters/kformula/svg/svgexport.h
+++ b/filters/kformula/svg/svgexport.h
@@ -29,7 +29,7 @@ class SvgExport : public KoFilter
TQ_OBJECT
public:
- SvgExport(KoFilter *tqparent, const char *name, const TQStringList&);
+ SvgExport(KoFilter *parent, const char *name, const TQStringList&);
virtual ~SvgExport();
virtual KoFilter::ConversiontqStatus convert(const TQCString& from, const TQCString& to);