summaryrefslogtreecommitdiffstats
path: root/krec/krecconfig_fileswidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'krec/krecconfig_fileswidget.h')
-rw-r--r--krec/krecconfig_fileswidget.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/krec/krecconfig_fileswidget.h b/krec/krecconfig_fileswidget.h
index 2095ce33..2dfb1b36 100644
--- a/krec/krecconfig_fileswidget.h
+++ b/krec/krecconfig_fileswidget.h
@@ -16,10 +16,10 @@
#ifndef KREC_CONFIGURE_FILESWIDGET_H
#define KREC_CONFIGURE_FILESWIDGET_H
-#include <qhbox.h>
-#include <qvbox.h>
-#include <qstringlist.h>
-#include <qstring.h>
+#include <tqhbox.h>
+#include <tqvbox.h>
+#include <tqstringlist.h>
+#include <tqstring.h>
class QRadioButton;
class QCheckBox;
@@ -27,10 +27,10 @@ class QButtonGroup;
class QLineEdit;
class QLabel;
-class KRecConfigFilesWidget : public QVBox {
+class KRecConfigFilesWidget : public TQVBox {
Q_OBJECT
public:
- KRecConfigFilesWidget( QWidget*, const char* =0 );
+ KRecConfigFilesWidget( TQWidget*, const char* =0 );
~KRecConfigFilesWidget();
void load();
@@ -43,22 +43,22 @@ signals:
void sUseDefaultsChanged( bool );
private slots:
void ratechanged( int );
- void rateotherchanged( const QString& );
+ void rateotherchanged( const TQString& );
void channelschanged( int );
void bitschanged( int );
void usedefaultschanged( bool );
private:
- QHBox *_hbox;
- QButtonGroup *_ratebox, *_channelsbox, *_bitsbox;
- QRadioButton *_rate48, *_rate44, *_rate22, *_rate11, *_rateother;
- QHBox *_rateotherbox;
- QLabel *_rateotherlabel;
- QLineEdit *_rateotherline;
- QRadioButton *_channels2, *_channels1;
- QRadioButton *_bits16, *_bits8;
+ TQHBox *_hbox;
+ TQButtonGroup *_ratebox, *_channelsbox, *_bitsbox;
+ TQRadioButton *_rate48, *_rate44, *_rate22, *_rate11, *_rateother;
+ TQHBox *_rateotherbox;
+ TQLabel *_rateotherlabel;
+ TQLineEdit *_rateotherline;
+ TQRadioButton *_channels2, *_channels1;
+ TQRadioButton *_bits16, *_bits8;
- QCheckBox *_usedefaults;
+ TQCheckBox *_usedefaults;
int _samplingRate, _channels, _bits;
};