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/SplitByPitchDialog.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/SplitByPitchDialog.cpp')
-rw-r--r-- | src/gui/dialogs/SplitByPitchDialog.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
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 <kcombobox.h> #include <kdialogbase.h> -#include <qcheckbox.h> -#include <qframe.h> -#include <qlabel.h> -#include <qvbox.h> -#include <qwidget.h> -#include <qlayout.h> +#include <tqcheckbox.h> +#include <tqframe.h> +#include <tqlabel.h> +#include <tqvbox.h> +#include <tqwidget.h> +#include <tqlayout.h> 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")); |