diff options
Diffstat (limited to 'libtdepim/kconfigwizard.h')
-rw-r--r-- | libtdepim/kconfigwizard.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/libtdepim/kconfigwizard.h b/libtdepim/kconfigwizard.h index b933e2a2b..a06849ecc 100644 --- a/libtdepim/kconfigwizard.h +++ b/libtdepim/kconfigwizard.h @@ -30,7 +30,7 @@ class TQListView; /** @short Configuration wizard base class */ -class KDE_EXPORT KConfigWizard : public KDialogBase +class KDE_EXPORT TDEConfigWizard : public KDialogBase { Q_OBJECT @@ -38,26 +38,26 @@ class KDE_EXPORT KConfigWizard : public KDialogBase /** Create wizard. You have to set a propgator with setPropagator() later. */ - KConfigWizard( TQWidget *parent = 0, char *name = 0, bool modal = false ); + TDEConfigWizard( TQWidget *parent = 0, char *name = 0, bool modal = false ); /** - Create wizard for given KConfigPropagator. The wizard takes ownership of + Create wizard for given TDEConfigPropagator. The wizard takes ownership of the propagator. */ - KConfigWizard( KConfigPropagator *propagator, TQWidget *parent = 0, + TDEConfigWizard( TDEConfigPropagator *propagator, TQWidget *parent = 0, char *name = 0, bool modal = false ); /** Destructor. */ - virtual ~KConfigWizard(); + virtual ~TDEConfigWizard(); /** Set propagator the wizard operates on. */ - void setPropagator( KConfigPropagator * ); + void setPropagator( TDEConfigPropagator * ); /** Return propagator the wizard operates on. */ - KConfigPropagator *propagator() { return mPropagator; } + TDEConfigPropagator *propagator() { return mPropagator; } /** Create wizard page with given title. @@ -65,15 +65,15 @@ class KDE_EXPORT KConfigWizard : public KDialogBase TQFrame *createWizardPage( const TQString &title ); /** - Use this function to read the configuration from the KConfigSkeleton + Use this function to read the configuration from the TDEConfigSkeleton object to the GUI. */ virtual void usrReadConfig() = 0; /** This function is called when the wizard is finished. You have to save all - settings from the GUI to the KConfigSkeleton object here, so that the - KConfigPropagator can take them up from there. + settings from the GUI to the TDEConfigSkeleton object here, so that the + TDEConfigPropagator can take them up from there. */ virtual void usrWriteConfig() = 0; @@ -99,7 +99,7 @@ class KDE_EXPORT KConfigWizard : public KDialogBase void updateChanges(); private: - KConfigPropagator *mPropagator; + TDEConfigPropagator *mPropagator; TQListView *mRuleView; TQListView *mChangeView; |