summaryrefslogtreecommitdiffstats
path: root/src/gui/dialogs/PitchPickerDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/dialogs/PitchPickerDialog.cpp')
-rw-r--r--src/gui/dialogs/PitchPickerDialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/dialogs/PitchPickerDialog.cpp b/src/gui/dialogs/PitchPickerDialog.cpp
index dddc2a3..737726c 100644
--- a/src/gui/dialogs/PitchPickerDialog.cpp
+++ b/src/gui/dialogs/PitchPickerDialog.cpp
@@ -36,17 +36,17 @@
namespace Rosegarden
{
-PitchPickerDialog::PitchPickerDialog(TQWidget *parent, int initialPitch, TQString text) :
- KDialogBase(parent, 0, true, i18n("Pitch Selector"), Ok | Cancel)
+PitchPickerDialog::PitchPickerDialog(TQWidget *tqparent, int initialPitch, TQString text) :
+ KDialogBase(tqparent, 0, true, i18n("Pitch Selector"), Ok | Cancel)
{
TQVBox *vBox = makeVBoxMainWidget();
TQFrame *frame = new TQFrame(vBox);
- TQGridLayout *layout = new TQGridLayout(frame, 4, 3, 10, 5);
+ TQGridLayout *tqlayout = new TQGridLayout(frame, 4, 3, 10, 5);
m_pitch = new PitchChooser(text, frame, initialPitch);
- layout->addMultiCellWidget(m_pitch, 0, 0, 0, 2, Qt::AlignHCenter);
+ tqlayout->addMultiCellWidget(m_pitch, 0, 0, 0, 2, TQt::AlignHCenter);
}
PitchPickerDialog::~PitchPickerDialog()