diff options
Diffstat (limited to 'interfaces/koChart.cc')
-rw-r--r-- | interfaces/koChart.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/interfaces/koChart.cc b/interfaces/koChart.cc index 692c7452..20d576ad 100644 --- a/interfaces/koChart.cc +++ b/interfaces/koChart.cc @@ -18,12 +18,12 @@ #include "koChart.h" -#include <qobjectlist.h> +#include <tqobjectlist.h> using namespace KoChart; WizardExtension::WizardExtension( Part *part, const char *name ) - : QObject( part, name ) + : TQObject( part, name ) { m_part = part; } @@ -32,10 +32,10 @@ WizardExtension::~WizardExtension() { } -Part::Part( QWidget *parentWidget, const char *widgetName, - QObject *parent, const char *name, +Part::Part( TQWidget *tqparentWidget, const char *widgetName, + TQObject *tqparent, const char *name, bool singleViewMode ) - : KoDocument( parentWidget, widgetName, parent, name, singleViewMode ) + : KoDocument( tqparentWidget, widgetName, tqparent, name, singleViewMode ) { } @@ -45,7 +45,7 @@ Part::~Part() WizardExtension *Part::wizardExtension() { - QObjectListIt it( *QObject::children() ); + TQObjectListIt it( TQObject::childrenListObject() ); for (; it.current(); ++it ) if ( it.current()->inherits( "KoChart::WizardExtension" ) ) return static_cast<WizardExtension *>( it.current() ); |