From 11f31c37e5fa4889d9989f10272f44845449cb7b Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 6 Sep 2010 20:59:29 +0000 Subject: Initial TQt conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/gui/dialogs/SplitByPitchDialog.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src/gui/dialogs/SplitByPitchDialog.cpp') diff --git a/src/gui/dialogs/SplitByPitchDialog.cpp b/src/gui/dialogs/SplitByPitchDialog.cpp index 9b3dffa..9ff3772 100644 --- a/src/gui/dialogs/SplitByPitchDialog.cpp +++ b/src/gui/dialogs/SplitByPitchDialog.cpp @@ -31,39 +31,39 @@ #include "gui/widgets/PitchChooser.h" #include #include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include namespace Rosegarden { -SplitByPitchDialog::SplitByPitchDialog(QWidget *parent) : +SplitByPitchDialog::SplitByPitchDialog(TQWidget *parent) : KDialogBase(parent, 0, true, i18n("Split by Pitch"), 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(i18n("Starting split pitch"), frame, 60); layout->addMultiCellWidget(m_pitch, 0, 0, 0, 2, Qt::AlignHCenter); - m_range = new QCheckBox(i18n("Range up and down to follow music"), frame); + m_range = new TQCheckBox(i18n("Range up and down to follow music"), frame); layout->addMultiCellWidget(m_range, 1, 1, // fromRow, toRow 0, 2 // fromCol, toCol ); - m_duplicate = new QCheckBox(i18n("Duplicate non-note events"), frame); + m_duplicate = new TQCheckBox(i18n("Duplicate non-note events"), frame); layout->addMultiCellWidget(m_duplicate, 2, 2, 0, 2); - layout->addWidget(new QLabel(i18n("Clef handling:"), frame), 3, 0); + layout->addWidget(new TQLabel(i18n("Clef handling:"), frame), 3, 0); m_clefs = new KComboBox(frame); m_clefs->insertItem(i18n("Leave clefs alone")); -- cgit v1.2.1