summaryrefslogtreecommitdiffstats
path: root/src/option/k3bdeviceoptiontab.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-27 19:21:21 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-27 19:21:21 +0000
commitd8cc8bdfa7fa624a526d5aa1626974e1444cb799 (patch)
treef295f1c545b319963d5357af79fe08991d8141d9 /src/option/k3bdeviceoptiontab.h
parent2a39a080579fb52a2599c02b2939795385b89093 (diff)
downloadk3b-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/option/k3bdeviceoptiontab.h')
-rw-r--r--src/option/k3bdeviceoptiontab.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/option/k3bdeviceoptiontab.h b/src/option/k3bdeviceoptiontab.h
index 492b421..7e900ba 100644
--- a/src/option/k3bdeviceoptiontab.h
+++ b/src/option/k3bdeviceoptiontab.h
@@ -17,18 +17,19 @@
#ifndef K3B_DEVICE_OPTIONTAB_H
#define K3B_DEVICE_OPTIONTAB_H
-#include <qwidget.h>
+#include <tqwidget.h>
-class QLabel;
+class TQLabel;
class K3bDeviceWidget;
-class K3bDeviceOptionTab : public QWidget
+class K3bDeviceOptionTab : public TQWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- K3bDeviceOptionTab( QWidget*, const char* name = 0 );
+ K3bDeviceOptionTab( TQWidget*, const char* name = 0 );
~K3bDeviceOptionTab();
void readDevices();
@@ -38,7 +39,7 @@ Q_OBJECT
void slotRefreshButtonClicked();
private:
- QLabel* m_labelDevicesInfo;
+ TQLabel* m_labelDevicesInfo;
K3bDeviceWidget* m_deviceWidget;
};