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/k3baudioburndialog.h | |
parent | 2a39a080579fb52a2599c02b2939795385b89093 (diff) | |
download | k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.tar.gz k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.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/k3baudioburndialog.h')
-rw-r--r-- | src/projects/k3baudioburndialog.h | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/src/projects/k3baudioburndialog.h b/src/projects/k3baudioburndialog.h index 47be09f..64355a2 100644 --- a/src/projects/k3baudioburndialog.h +++ b/src/projects/k3baudioburndialog.h @@ -20,20 +20,20 @@ #include "k3bprojectburndialog.h" -#include <qvariant.h> -#include <qwidget.h> +#include <tqvariant.h> +#include <tqwidget.h> -class QCheckBox; -class QComboBox; -class QGroupBox; -class QLabel; -class QLineEdit; -class QSpinBox; +class TQCheckBox; +class TQComboBox; +class TQGroupBox; +class TQLabel; +class TQLineEdit; +class TQSpinBox; class K3bWriterSelectionWidget; class K3bTempDirSelectionWidget; class K3bAudioDoc; class K3bAudioCdTextWidget; -class QShowEvent; +class TQShowEvent; /** @@ -42,9 +42,10 @@ class QShowEvent; class K3bAudioBurnDialog : public K3bProjectBurnDialog { Q_OBJECT + TQ_OBJECT public: - K3bAudioBurnDialog(K3bAudioDoc* doc, QWidget *parent=0, const char *name=0, bool modal = true ); + K3bAudioBurnDialog(K3bAudioDoc* doc, TQWidget *tqparent=0, const char *name=0, bool modal = true ); ~K3bAudioBurnDialog(); protected: @@ -53,7 +54,7 @@ class K3bAudioBurnDialog : public K3bProjectBurnDialog void loadK3bDefaults(); void loadUserDefaults( KConfigBase* ); void saveUserDefaults( KConfigBase* ); - void showEvent( QShowEvent* ); + void showEvent( TQShowEvent* ); void toggleAll(); protected slots: @@ -68,12 +69,12 @@ class K3bAudioBurnDialog : public K3bProjectBurnDialog /** * We need this here to be able to hide/show the group */ - QGroupBox* m_audioRippingGroup; - QCheckBox* m_checkHideFirstTrack; - QCheckBox* m_checkNormalize; - QCheckBox* m_checkAudioRippingIgnoreReadErrors; - QSpinBox* m_spinAudioRippingReadRetries; - QComboBox* m_comboParanoiaMode; + TQGroupBox* m_audioRippingGroup; + TQCheckBox* m_checkHideFirstTrack; + TQCheckBox* m_checkNormalize; + TQCheckBox* m_checkAudioRippingIgnoreReadErrors; + TQSpinBox* m_spinAudioRippingReadRetries; + TQComboBox* m_comboParanoiaMode; K3bAudioCdTextWidget* m_cdtextWidget; K3bAudioDoc* m_doc; }; |