diff options
author | Slávek Banko <[email protected]> | 2016-03-26 12:35:35 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-03-26 14:10:15 +0100 |
commit | 38dca4b75c471ddf950e2f9f03801c550d7d26fd (patch) | |
tree | f5923ce5d84971f1f394baf7411146f078c02fab /part/kxesettings.h | |
parent | e28665ce3b2e9ec6f09b4c021db7443cac3c4128 (diff) | |
download | kxmleditor-38dca4b75c471ddf950e2f9f03801c550d7d26fd.tar.gz kxmleditor-38dca4b75c471ddf950e2f9f03801c550d7d26fd.zip |
Initial TQt conversion
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'part/kxesettings.h')
-rw-r--r-- | part/kxesettings.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/part/kxesettings.h b/part/kxesettings.h index 804c63e..b1a98ea 100644 --- a/part/kxesettings.h +++ b/part/kxesettings.h @@ -18,10 +18,10 @@ #ifndef KXESETTINGS_H #define KXESETTINGS_H -#include <qobject.h> +#include <tqobject.h> class KConfig; -class QFrame; +class TQFrame; /** * This is an abstract base class for classes representing a group, that stores @@ -30,7 +30,7 @@ class QFrame; * * @author Olaf Hartig */ -class KXESettings : public QObject +class KXESettings : public TQObject { Q_OBJECT @@ -42,7 +42,7 @@ class KXESettings : public QObject * @param strConfigGroup the name of the corresponding group in the config file, * it is copied to the member @ref m_strConfigGroup */ - KXESettings( const QString & strConfigGroup, QObject * pParent = 0, const char * pszName = 0 ); + KXESettings( const TQString & strConfigGroup, TQObject * pParent = 0, const char * pszName = 0 ); /** * Stores this settings to the given @ref KConfig object, by doing the @@ -80,7 +80,7 @@ class KXESettings : public QObject * pages in the configuration dialog. * This name has to be internationalized. */ - virtual QString dialogPageName() const = 0; + virtual TQString dialogPageName() const = 0; /** * You can override this function and return a header line to * be used for the corresponding configuration dialog page. @@ -88,12 +88,12 @@ class KXESettings : public QObject * @ref dialogPageName) * This string has to be internationalized. */ - virtual QString dialogPageHeader() const { return QString::null; } + virtual TQString dialogPageHeader() const { return TQString::null; } /** * Override this function and return the (file-)name of the icon * to be used in the configuration dialog for the corresponding page. */ - virtual QString dialogPageIcon() const = 0; + virtual TQString dialogPageIcon() const = 0; /** * Override this function to create the corresponding configuration * dialog page with the given parent and return it. @@ -101,7 +101,7 @@ class KXESettings : public QObject * Connect the signal @ref sigDialogPageChanged to the page's * data changed signal(s). */ - virtual QWidget * dialogPage( QFrame * pParent ) = 0; + virtual TQWidget * dialogPage( TQFrame * pParent ) = 0; signals: @@ -168,7 +168,7 @@ class KXESettings : public QObject /** * name of the config group for this group of settings */ - const QString m_strConfigGroup; + const TQString m_strConfigGroup; }; |