diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
commit | d8cc8bdfa7fa624a526d5aa1626974e1444cb799 (patch) | |
tree | f295f1c545b319963d5357af79fe08991d8141d9 /src/projects/k3bmixedburndialog.h | |
parent | 2a39a080579fb52a2599c02b2939795385b89093 (diff) | |
download | k3b-d8cc8bdf.tar.gz k3b-d8cc8bdf.zip |
TQt4 port k3b
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1233803 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/projects/k3bmixedburndialog.h')
-rw-r--r-- | src/projects/k3bmixedburndialog.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/projects/k3bmixedburndialog.h b/src/projects/k3bmixedburndialog.h index 363d26e..94d224e 100644 --- a/src/projects/k3bmixedburndialog.h +++ b/src/projects/k3bmixedburndialog.h @@ -19,13 +19,13 @@ #include "k3bprojectburndialog.h" -class QCheckBox; +class TQCheckBox; class K3bWriterSelectionWidget; class K3bTempDirSelectionWidget; class K3bMixedDoc; class K3bDataImageSettingsWidget; -class QButtonGroup; -class QRadioButton; +class TQButtonGroup; +class TQRadioButton; class K3bAudioCdTextWidget; class K3bDataModeWidget; class K3bIntMapComboBox; @@ -37,9 +37,10 @@ class K3bIntMapComboBox; class K3bMixedBurnDialog : public K3bProjectBurnDialog { Q_OBJECT + TQ_OBJECT public: - K3bMixedBurnDialog( K3bMixedDoc*, QWidget *parent=0, const char *name=0, bool modal = true ); + K3bMixedBurnDialog( K3bMixedDoc*, TQWidget *tqparent=0, const char *name=0, bool modal = true ); protected: void loadK3bDefaults(); @@ -66,11 +67,11 @@ class K3bMixedBurnDialog : public K3bProjectBurnDialog K3bMixedDoc* m_doc; K3bIntMapComboBox* m_comboMixedModeType; - QRadioButton* m_radioMixedTypeFirstTrack; - QRadioButton* m_radioMixedTypeLastTrack; - QRadioButton* m_radioMixedTypeSessions; + TQRadioButton* m_radioMixedTypeFirstTrack; + TQRadioButton* m_radioMixedTypeLastTrack; + TQRadioButton* m_radioMixedTypeSessions; - QCheckBox* m_checkNormalize; + TQCheckBox* m_checkNormalize; K3bDataModeWidget* m_dataModeWidget; }; |