summaryrefslogtreecommitdiffstats
path: root/src/dirdialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-01 23:15:51 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-01 23:15:51 +0000
commit6b1b516f42036cf9eff691dba3fd6e9eab82a7e1 (patch)
tree6830f75fd57d0fac7e33c097ee98b210e90c5239 /src/dirdialog.h
parent6318b8bb3ef964cfa99ba454a2630779cc9ac3ec (diff)
downloadsoundkonverter-6b1b516f42036cf9eff691dba3fd6e9eab82a7e1.tar.gz
soundkonverter-6b1b516f42036cf9eff691dba3fd6e9eab82a7e1.zip
TQt4 port soundkonverter
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/soundkonverter@1239038 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/dirdialog.h')
-rwxr-xr-xsrc/dirdialog.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/dirdialog.h b/src/dirdialog.h
index 4227a9e..4272fed 100755
--- a/src/dirdialog.h
+++ b/src/dirdialog.h
@@ -6,7 +6,7 @@
class Config;
-class QCheckBox;
+class TQCheckBox;
class KLineEdit;
class KPushButton;
@@ -21,6 +21,7 @@ class KListBox;
class DirDialog : public KDialog
{
Q_OBJECT
+ TQ_OBJECT
public:
enum Mode {
Convert = 0x0001,
@@ -30,15 +31,15 @@ public:
/**
* Constructor
*/
- DirDialog( Config*, Mode, QWidget* parent=0, const char* name=0, bool modal=true, WFlags f=0 );
+ DirDialog( Config*, Mode, TQWidget* tqparent=0, const char* name=0, bool modal=true, WFlags f=0 );
/**
* Destructor
*/
virtual ~DirDialog();
- QString directory;
- QStringList selectedFileTypes;
+ TQString directory;
+ TQStringList selectedFileTypes;
bool recursive;
private slots:
@@ -55,7 +56,7 @@ private:
KListBox* fileTypes;
KPushButton* pSelectAll;
KPushButton* pSelectNone;
- QCheckBox* cRecursive;
+ TQCheckBox* cRecursive;
KPushButton* pCancel;
KPushButton* pOk;