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/k3bmediaselectiondialog.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/k3bmediaselectiondialog.h')
-rw-r--r-- | src/k3bmediaselectiondialog.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/k3bmediaselectiondialog.h b/src/k3bmediaselectiondialog.h index 317767d..e197ef5 100644 --- a/src/k3bmediaselectiondialog.h +++ b/src/k3bmediaselectiondialog.h @@ -27,14 +27,15 @@ namespace K3bDevice { class K3bMediaSelectionDialog : public KDialogBase { Q_OBJECT + TQ_OBJECT public: /** * Do not use the constructor. Use the static method instead. */ - K3bMediaSelectionDialog( QWidget* parent = 0, - const QString& title = QString::null, - const QString& text = QString::null, + K3bMediaSelectionDialog( TQWidget* tqparent = 0, + const TQString& title = TQString(), + const TQString& text = TQString(), bool modal = false ); ~K3bMediaSelectionDialog(); @@ -66,15 +67,15 @@ class K3bMediaSelectionDialog : public KDialogBase * If only one medium of the wanted type is found the method returns immideately * without showing the dialog. */ - static K3bDevice::Device* selectMedium( int type, int state, QWidget* parent = 0, - const QString& title = QString::null, - const QString& text = QString::null, + static K3bDevice::Device* selectMedium( int type, int state, TQWidget* tqparent = 0, + const TQString& title = TQString(), + const TQString& text = TQString(), bool* canceled = 0 ); static K3bDevice::Device* selectMedium( int type, int state, int content = K3bMedium::CONTENT_ALL, - QWidget* parent = 0, - const QString& title = QString::null, - const QString& text = QString::null, + TQWidget* tqparent = 0, + const TQString& title = TQString(), + const TQString& text = TQString(), bool* canceled = 0 ); private slots: |