diff options
author | Slávek Banko <[email protected]> | 2016-03-26 12:41:49 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-03-26 14:15:13 +0100 |
commit | ea0a6815c10291d1ae30029f5183e3eaaf838fda (patch) | |
tree | e522c735ad703edee863c5d490f519f9cf713120 /part/kxesettings.h | |
parent | 38dca4b75c471ddf950e2f9f03801c550d7d26fd (diff) | |
download | kxmleditor-ea0a6815c10291d1ae30029f5183e3eaaf838fda.tar.gz kxmleditor-ea0a6815c10291d1ae30029f5183e3eaaf838fda.zip |
Initial TDE conversion
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'part/kxesettings.h')
-rw-r--r-- | part/kxesettings.h | 26 |
1 files changed, 13 insertions, 13 deletions
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 <tqobject.h> -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 |