diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 03:43:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 03:43:07 +0000 |
commit | 70b9eea2ba01c3691497f49e4c45cb070c16193c (patch) | |
tree | 9a6df61aa247a27275aad9c5245e419e89c2c640 /kradio3/plugins/gui-standard-display/displaycfg.h | |
parent | 998c1384ace4ae4655997c181fa33242148cd0a4 (diff) | |
download | tderadio-70b9eea2ba01c3691497f49e4c45cb070c16193c.tar.gz tderadio-70b9eea2ba01c3691497f49e4c45cb070c16193c.zip |
TQt4 port kradio
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kradio@1238952 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kradio3/plugins/gui-standard-display/displaycfg.h')
-rw-r--r-- | kradio3/plugins/gui-standard-display/displaycfg.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/kradio3/plugins/gui-standard-display/displaycfg.h b/kradio3/plugins/gui-standard-display/displaycfg.h index fcd6079..94101c1 100644 --- a/kradio3/plugins/gui-standard-display/displaycfg.h +++ b/kradio3/plugins/gui-standard-display/displaycfg.h @@ -23,17 +23,18 @@ #endif #include "displaycfg_interfaces.h" -#include <qwidget.h> +#include <tqwidget.h> class KColorButton; class KFontChooser; -class DisplayConfiguration : public QWidget, +class DisplayConfiguration : public TQWidget, public IDisplayCfgClient { Q_OBJECT + TQ_OBJECT public: - DisplayConfiguration(QWidget *parent); + DisplayConfiguration(TQWidget *tqparent); ~DisplayConfiguration(); // Interface @@ -44,8 +45,8 @@ public: // IDisplayCfgClient RECEIVERS: - bool noticeDisplayColorsChanged(const QColor &activeColor, const QColor &inactiveColor, const QColor &bkgnd); - bool noticeDisplayFontChanged(const QFont &f); + bool noticeDisplayColorsChanged(const TQColor &activeColor, const TQColor &inactiveColor, const TQColor &bkgnd); + bool noticeDisplayFontChanged(const TQFont &f); public slots: |