diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /krec/krecnewproperties.h | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-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/krecnewproperties.h')
-rw-r--r-- | krec/krecnewproperties.h | 12 |
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; }; |