summaryrefslogtreecommitdiffstats
path: root/krec/krecconfig_fileswidget.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
commite654398e46e37abf457b2b1122ab898d2c51c49f (patch)
treed39ee6440f3c3663c3ead84a2d4cc2d034667e96 /krec/krecconfig_fileswidget.h
parente4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff)
downloadtdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz
tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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;
};