From 6ca08e7a881c0c97f338e0085f75af04ec08ad04 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 16 Dec 2011 09:57:35 -0600 Subject: Revert "Rename a number of old tq methods that are no longer tq specific" This reverts commit 4faf11eccc5f08d2aa0540157d6eff80b7cdb02a. --- src/gui/dialogs/BeatsBarsDialog.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gui/dialogs/BeatsBarsDialog.cpp') diff --git a/src/gui/dialogs/BeatsBarsDialog.cpp b/src/gui/dialogs/BeatsBarsDialog.cpp index c9d9773..1624e03 100644 --- a/src/gui/dialogs/BeatsBarsDialog.cpp +++ b/src/gui/dialogs/BeatsBarsDialog.cpp @@ -24,7 +24,7 @@ #include "BeatsBarsDialog.h" -#include +#include #include #include "base/Segment.h" @@ -50,16 +50,16 @@ BeatsBarsDialog::BeatsBarsDialog(TQWidget* parent) : i18n("The selected audio segment contains:"), hbox); TQFrame *frame = new TQFrame(gbox); - TQGridLayout *layout = new TQGridLayout(frame, 1, 2, 5, 5); + TQGridLayout *tqlayout = new TQGridLayout(frame, 1, 2, 5, 5); m_spinBox = new TQSpinBox(1, INT_MAX, 1, frame, "glee"); - layout->addWidget(m_spinBox, 0, 0); + tqlayout->addWidget(m_spinBox, 0, 0); m_comboBox = new KComboBox(false, frame); m_comboBox->insertItem(i18n("beat(s)")); m_comboBox->insertItem(i18n("bar(s)")); m_comboBox->setCurrentItem(0); - layout->addWidget(m_comboBox, 0, 1); + tqlayout->addWidget(m_comboBox, 0, 1); } } -- cgit v1.2.1