summaryrefslogtreecommitdiffstats
path: root/libkdepim/kconfigwizard.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkdepim/kconfigwizard.h')
-rw-r--r--libkdepim/kconfigwizard.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libkdepim/kconfigwizard.h b/libkdepim/kconfigwizard.h
index 293c7b9a..23dfb9ee 100644
--- a/libkdepim/kconfigwizard.h
+++ b/libkdepim/kconfigwizard.h
@@ -37,12 +37,12 @@ class KDE_EXPORT KConfigWizard : public KDialogBase
/**
Create wizard. You have to set a propgator with setPropagator() later.
*/
- KConfigWizard( QWidget *parent = 0, char *name = 0, bool modal = false );
+ KConfigWizard( TQWidget *parent = 0, char *name = 0, bool modal = false );
/**
Create wizard for given KConfigPropagator. The wizard takes ownership of
the propagator.
*/
- KConfigWizard( KConfigPropagator *propagator, QWidget *parent = 0,
+ KConfigWizard( KConfigPropagator *propagator, TQWidget *parent = 0,
char *name = 0, bool modal = false );
/**
Destructor.
@@ -61,7 +61,7 @@ class KDE_EXPORT KConfigWizard : public KDialogBase
/**
Create wizard page with given title.
*/
- QFrame *createWizardPage( const QString &title );
+ TQFrame *createWizardPage( const TQString &title );
/**
Use this function to read the configuration from the KConfigSkeleton
@@ -78,16 +78,16 @@ class KDE_EXPORT KConfigWizard : public KDialogBase
/**
Validates the supplied data. Returns a appropiate error when some data
- is invalid. Return QString::null if all data is valid.
+ is invalid. Return TQString::null if all data is valid.
*/
- virtual QString validate() { return QString::null; }
+ virtual TQString validate() { return TQString::null; }
protected slots:
void readConfig();
void slotOk();
- void slotAboutToShowPage( QWidget *page );
+ void slotAboutToShowPage( TQWidget *page );
protected:
void init();
@@ -100,10 +100,10 @@ class KDE_EXPORT KConfigWizard : public KDialogBase
private:
KConfigPropagator *mPropagator;
- QListView *mRuleView;
- QListView *mChangeView;
+ TQListView *mRuleView;
+ TQListView *mChangeView;
- QWidget *mChangesPage;
+ TQWidget *mChangesPage;
};
#endif