From ea0a6815c10291d1ae30029f5183e3eaaf838fda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 26 Mar 2016 12:41:49 +0100 Subject: Initial TDE conversion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- part/kxesettings.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'part/kxesettings.h') diff --git a/part/kxesettings.h b/part/kxesettings.h index b1a98ea..f8713b6 100644 --- a/part/kxesettings.h +++ b/part/kxesettings.h @@ -20,7 +20,7 @@ #include -class KConfig; +class TDEConfig; class TQFrame; /** @@ -45,26 +45,26 @@ class KXESettings : public TQObject KXESettings( const TQString & strConfigGroup, TQObject * pParent = 0, const char * pszName = 0 ); /** - * Stores this settings to the given @ref KConfig object, by doing the + * Stores this settings to the given @ref TDEConfig object, by doing the * following things: * * - set the config group by calling @ref setConfigGroup - * - write the data to the given @ref KConfig object by calling @ref write + * - write the data to the given @ref TDEConfig object by calling @ref write * (which is implemented in the child class) */ - void store( KConfig * ) const; + void store( TDEConfig * ) const; /** - * Restores the settings from the given @ref KConfig object, by doing + * Restores the settings from the given @ref TDEConfig object, by doing * following things: * * - set the config group by calling @ref setConfigGroup - * - read the data from the given @ref KConfig object by calling @ref read + * - read the data from the given @ref TDEConfig object by calling @ref read * (which is implemented in the child class) * - try to update the corresponding config.page by calling @ref updatePage * (implemented in the child class) * - emit the signal sigChanged */ - void restore( KConfig * ); + void restore( TDEConfig * ); /** * If the data in the corresponding configuration dialog page has been * changed (@ref m_bPageChanged), this data gets applied by the @@ -122,15 +122,15 @@ class KXESettings : public TQObject protected: /** - * Overide this function and write your settings to the given KConfig object. + * Overide this function and write your settings to the given TDEConfig object. * You mustn't change the config group. */ - virtual void write( KConfig * ) const = 0; + virtual void write( TDEConfig * ) const = 0; /** - * Overide this function and read the settings from the given KConfig object. + * Overide this function and read the settings from the given TDEConfig object. * You mustn't change the config group. */ - virtual void read( const KConfig * ) = 0; + virtual void read( const TDEConfig * ) = 0; /** * Override this function to set this object's data to the data in the * corresponding configuration dialog page, if a page has already been @@ -145,10 +145,10 @@ class KXESettings : public TQObject virtual void updatePage() const = 0; /** - * Sets the config group of the given @ref KConfig object to + * Sets the config group of the given @ref TDEConfig object to * this setting's config group (@ref m_strConfigGroup). */ - void setConfigGroup( KConfig * ) const; + void setConfigGroup( TDEConfig * ) const; /** * This flag is set to true if the data in the corresponding configuration -- cgit v1.2.1