diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 23:15:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 23:15:51 +0000 |
commit | 6b1b516f42036cf9eff691dba3fd6e9eab82a7e1 (patch) | |
tree | 6830f75fd57d0fac7e33c097ee98b210e90c5239 /src/configpluginspage.h | |
parent | 6318b8bb3ef964cfa99ba454a2630779cc9ac3ec (diff) | |
download | soundkonverter-6b1b516f42036cf9eff691dba3fd6e9eab82a7e1.tar.gz soundkonverter-6b1b516f42036cf9eff691dba3fd6e9eab82a7e1.zip |
TQt4 port soundkonverter
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/soundkonverter@1239038 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/configpluginspage.h')
-rwxr-xr-x | src/configpluginspage.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/configpluginspage.h b/src/configpluginspage.h index 2cca5ed..245f69c 100755 --- a/src/configpluginspage.h +++ b/src/configpluginspage.h @@ -9,7 +9,7 @@ class Config; class KPushButton; class KListBox; -class QCheckBox; +class TQCheckBox; /** * @short The page for configuring the plugins @@ -19,11 +19,12 @@ class QCheckBox; class ConfigPluginsPage : public ConfigPageBase { Q_OBJECT + TQ_OBJECT public: /** * Default Constructor */ - ConfigPluginsPage( Config*, QWidget *parent=0, const char *name=0 ); + ConfigPluginsPage( Config*, TQWidget *tqparent=0, const char *name=0 ); /** * Default Destructor @@ -44,9 +45,9 @@ private: KPushButton* pUpgradeOnlinePlugins; KPushButton* pAboutOnlinePlugin; KIO::FileCopyJob* aboutOnlinePluginJob; - QCheckBox* cCheckOnlinePlugins; + TQCheckBox* cCheckOnlinePlugins; - QString getPluginFilePathName; + TQString getPluginFilePathName; Config* config; |