summaryrefslogtreecommitdiffstats
path: root/krec/krecnewproperties.h
diff options
context:
space:
mode:
Diffstat (limited to 'krec/krecnewproperties.h')
-rw-r--r--krec/krecnewproperties.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/krec/krecnewproperties.h b/krec/krecnewproperties.h
index f398033b..53996f13 100644
--- a/krec/krecnewproperties.h
+++ b/krec/krecnewproperties.h
@@ -14,7 +14,7 @@
#ifndef KREC_NEW_PROPERTIES_H
#define KREC_NEW_PROPERTIES_H
-#include <qdialog.h>
+#include <tqdialog.h>
class KConfig;
class QBoxLayout;
@@ -26,13 +26,13 @@ class QVBox;
class KRecConfigFilesWidget;
-class KRecNewProperties : public QDialog {
+class KRecNewProperties : public TQDialog {
Q_OBJECT
public:
- KRecNewProperties( QWidget*, const char* =0 );
+ KRecNewProperties( TQWidget*, const char* =0 );
~KRecNewProperties();
- QString filename();
+ TQString filename();
int samplerate();
int channels();
int bits();
@@ -45,13 +45,13 @@ private slots:
void bitschanged( int );
void usedefaultschanged( bool );
private:
- QString _filename;
+ TQString _filename;
KRecConfigFilesWidget *_filewidget;
int _samplerate, _channels, _bits;
bool _usedefaults;
- QBoxLayout *_layout, *_layoutbuttons;
+ TQBoxLayout *_layout, *_layoutbuttons;
KPushButton *_btnok;
};