summaryrefslogtreecommitdiffstats
path: root/src/gui/dialogs/BeatsBarsDialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-21 14:07:05 -0600
committerTimothy Pearson <[email protected]>2011-12-21 14:07:05 -0600
commitc18386d69b76ef0218b5f0a08ca773fa824322b6 (patch)
tree0bea571897791e4a9ae01e42d0923c3c7baf0bda /src/gui/dialogs/BeatsBarsDialog.cpp
parent97f1c43c867725d49f3943a68ef08d7e71767e99 (diff)
downloadrosegarden-c18386d69b76ef0218b5f0a08ca773fa824322b6.tar.gz
rosegarden-c18386d69b76ef0218b5f0a08ca773fa824322b6.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/gui/dialogs/BeatsBarsDialog.cpp')
-rw-r--r--src/gui/dialogs/BeatsBarsDialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/dialogs/BeatsBarsDialog.cpp b/src/gui/dialogs/BeatsBarsDialog.cpp
index 1624e03..3d02b64 100644
--- a/src/gui/dialogs/BeatsBarsDialog.cpp
+++ b/src/gui/dialogs/BeatsBarsDialog.cpp
@@ -50,16 +50,16 @@ BeatsBarsDialog::BeatsBarsDialog(TQWidget* parent) :
i18n("The selected audio segment contains:"), hbox);
TQFrame *frame = new TQFrame(gbox);
- TQGridLayout *tqlayout = new TQGridLayout(frame, 1, 2, 5, 5);
+ TQGridLayout *layout = new TQGridLayout(frame, 1, 2, 5, 5);
m_spinBox = new TQSpinBox(1, INT_MAX, 1, frame, "glee");
- tqlayout->addWidget(m_spinBox, 0, 0);
+ layout->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);
- tqlayout->addWidget(m_comboBox, 0, 1);
+ layout->addWidget(m_comboBox, 0, 1);
}
}