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/k3bdatapropertiesdialog.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/k3bdatapropertiesdialog.h')
-rw-r--r-- | src/projects/k3bdatapropertiesdialog.h | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/src/projects/k3bdatapropertiesdialog.h b/src/projects/k3bdatapropertiesdialog.h index eb585ce..8c79c47 100644 --- a/src/projects/k3bdatapropertiesdialog.h +++ b/src/projects/k3bdatapropertiesdialog.h @@ -22,9 +22,9 @@ class K3bDataItem; class KLineEdit; -class QPushButton; -class QLabel; -class QCheckBox; +class TQPushButton; +class TQLabel; +class TQCheckBox; /** @@ -33,9 +33,10 @@ class QCheckBox; class K3bDataPropertiesDialog : public KDialogBase { Q_OBJECT + TQ_OBJECT public: - K3bDataPropertiesDialog( K3bDataItem*, QWidget* parent = 0, const char* name = 0 ); + K3bDataPropertiesDialog( K3bDataItem*, TQWidget* tqparent = 0, const char* name = 0 ); ~K3bDataPropertiesDialog(); protected slots: @@ -43,16 +44,16 @@ Q_OBJECT private: KLineEdit* m_editName; - QLabel* m_labelType; - QLabel* m_labelLocation; - QLabel* m_labelSize; - QLabel* m_labelBlocks; + TQLabel* m_labelType; + TQLabel* m_labelLocation; + TQLabel* m_labelSize; + TQLabel* m_labelBlocks; - QLabel* m_labelLocalName; - QLabel* m_labelLocalLocation; + TQLabel* m_labelLocalName; + TQLabel* m_labelLocalLocation; - QCheckBox* m_checkHideOnRockRidge; - QCheckBox* m_checkHideOnJoliet; + TQCheckBox* m_checkHideOnRockRidge; + TQCheckBox* m_checkHideOnJoliet; KLineEdit* m_editSortWeight; K3bDataItem* m_dataItem; |