diff options
Diffstat (limited to 'part/kxetextviewsettings.h')
-rw-r--r-- | part/kxetextviewsettings.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/part/kxetextviewsettings.h b/part/kxetextviewsettings.h index 117282a..8b08d92 100644 --- a/part/kxetextviewsettings.h +++ b/part/kxetextviewsettings.h @@ -20,7 +20,7 @@ #include "kxesettings.h" -#include <qcolor.h> +#include <tqcolor.h> class KXETextViewSettingsPage; @@ -34,35 +34,35 @@ class KXETextViewSettings : public KXESettings { public: - KXETextViewSettings( QObject * pParent = 0, const char * pszName = 0 ); + KXETextViewSettings( TQObject * pParent = 0, const char * pszName = 0 ); // The following functions can be used to access this object's settings. - const QColor & colorDfltText() const { return m_colorDfltText; } - const QColor & colorElemNames() const { return m_colorElemNames; } - const QColor & colorAttrNames() const { return m_colorAttrNames; } - const QColor & colorAttrValues() const { return m_colorAttrValues; } - const QColor & colorSyntaxChars() const { return m_colorSyntaxChars; } - const QColor & colorComments() const { return m_colorComments; } - const QColor & colorErrors() const { return m_colorErrors; } + const TQColor & colorDfltText() const { return m_colorDfltText; } + const TQColor & colorElemNames() const { return m_colorElemNames; } + const TQColor & colorAttrNames() const { return m_colorAttrNames; } + const TQColor & colorAttrValues() const { return m_colorAttrValues; } + const TQColor & colorSyntaxChars() const { return m_colorSyntaxChars; } + const TQColor & colorComments() const { return m_colorComments; } + const TQColor & colorErrors() const { return m_colorErrors; } int indentSteps() const { return m_iIndentSteps; } bool isWrapOn() const { return m_bWrapOn; } /** * Derived from @ref KXESettings */ - virtual QString dialogPageName() const; + virtual TQString dialogPageName() const; /** * Derived from @ref KXESettings */ - virtual QString dialogPageHeader() const; + virtual TQString dialogPageHeader() const; /** * Derived from @ref KXESettings */ - virtual QString dialogPageIcon() const; + virtual TQString dialogPageIcon() const; /** * Derived from @ref KXESettings */ - virtual QWidget * dialogPage( QFrame * pParent ); + virtual TQWidget * dialogPage( TQFrame * pParent ); protected: @@ -84,13 +84,13 @@ class KXETextViewSettings : public KXESettings virtual void updatePage() const; // the settings itself - QColor m_colorDfltText; - QColor m_colorElemNames; - QColor m_colorAttrNames; - QColor m_colorAttrValues; - QColor m_colorSyntaxChars; - QColor m_colorComments; - QColor m_colorErrors; + TQColor m_colorDfltText; + TQColor m_colorElemNames; + TQColor m_colorAttrNames; + TQColor m_colorAttrValues; + TQColor m_colorSyntaxChars; + TQColor m_colorComments; + TQColor m_colorErrors; int m_iIndentSteps; bool m_bWrapOn; |