diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
commit | 11f31c37e5fa4889d9989f10272f44845449cb7b (patch) | |
tree | 4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/dialogs/PitchPickerDialog.cpp | |
parent | 832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff) | |
download | rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.tar.gz rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.zip |
Initial TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/dialogs/PitchPickerDialog.cpp')
-rw-r--r-- | src/gui/dialogs/PitchPickerDialog.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/dialogs/PitchPickerDialog.cpp b/src/gui/dialogs/PitchPickerDialog.cpp index ddd1f23..dddc2a3 100644 --- a/src/gui/dialogs/PitchPickerDialog.cpp +++ b/src/gui/dialogs/PitchPickerDialog.cpp @@ -26,24 +26,24 @@ #include "PitchPickerDialog.h" #include <klocale.h> #include <kdialogbase.h> -#include <qlayout.h> -#include <qframe.h> -#include <qstring.h> -#include <qvbox.h> -#include <qwidget.h> +#include <tqlayout.h> +#include <tqframe.h> +#include <tqstring.h> +#include <tqvbox.h> +#include <tqwidget.h> namespace Rosegarden { -PitchPickerDialog::PitchPickerDialog(QWidget *parent, int initialPitch, QString text) : +PitchPickerDialog::PitchPickerDialog(TQWidget *parent, int initialPitch, TQString text) : KDialogBase(parent, 0, true, i18n("Pitch Selector"), Ok | Cancel) { - QVBox *vBox = makeVBoxMainWidget(); + TQVBox *vBox = makeVBoxMainWidget(); - QFrame *frame = new QFrame(vBox); + TQFrame *frame = new TQFrame(vBox); - QGridLayout *layout = new QGridLayout(frame, 4, 3, 10, 5); + TQGridLayout *layout = new TQGridLayout(frame, 4, 3, 10, 5); m_pitch = new PitchChooser(text, frame, initialPitch); layout->addMultiCellWidget(m_pitch, 0, 0, 0, 2, Qt::AlignHCenter); |