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.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/dialogs/PitchPickerDialog.cpp b/src/gui/dialogs/PitchPickerDialog.cpp
index 12e6034..ed09662 100644
--- a/src/gui/dialogs/PitchPickerDialog.cpp
+++ b/src/gui/dialogs/PitchPickerDialog.cpp
@@ -26,7 +26,7 @@
#include "PitchPickerDialog.h"
#include <klocale.h>
#include <kdialogbase.h>
-#include <layout.h>
+#include <tqlayout.h>
#include <tqframe.h>
#include <tqstring.h>
#include <tqvbox.h>
@@ -43,10 +43,10 @@ PitchPickerDialog::PitchPickerDialog(TQWidget *parent, int initialPitch, TQStrin
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, TQt::AlignHCenter);
+ tqlayout->addMultiCellWidget(m_pitch, 0, 0, 0, 2, TQt::AlignHCenter);
}
PitchPickerDialog::~PitchPickerDialog()