From 38dca4b75c471ddf950e2f9f03801c550d7d26fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 26 Mar 2016 12:35:35 +0100 Subject: Initial TQt 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 | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'part/kxesettings.h') 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 +#include 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; }; -- cgit v1.2.1