From c18386d69b76ef0218b5f0a08ca773fa824322b6 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 21 Dec 2011 14:07:05 -0600 Subject: Rename obsolete tq methods to standard names --- src/gui/configuration/LatencyConfigurationPage.cpp | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src/gui/configuration/LatencyConfigurationPage.cpp') diff --git a/src/gui/configuration/LatencyConfigurationPage.cpp b/src/gui/configuration/LatencyConfigurationPage.cpp index b786797..6910d3d 100644 --- a/src/gui/configuration/LatencyConfigurationPage.cpp +++ b/src/gui/configuration/LatencyConfigurationPage.cpp @@ -56,19 +56,19 @@ LatencyConfigurationPage::LatencyConfigurationPage(RosegardenGUIDoc *doc, #ifdef HAVE_LIBJACK frame = new TQFrame(m_tabWidget, i18n("JACK latency")); - tqlayout = new TQGridLayout(frame, 6, 5, 10, 10); + layout = new TQGridLayout(frame, 6, 5, 10, 10); - tqlayout->addMultiCellWidget(new TQLabel(i18n("Use the \"Fetch JACK latencies\" button to discover the latency values set at\nthe sequencer. It's recommended that you use the returned values but it's also\npossible to override them manually using the sliders. Note that if you change\nyour JACK server parameters you should always fetch the latency values again.\nThe latency values will be stored by Rosegarden for use next time."), frame), + layout->addMultiCellWidget(new TQLabel(i18n("Use the \"Fetch JACK latencies\" button to discover the latency values set at\nthe sequencer. It's recommended that you use the returned values but it's also\npossible to override them manually using the sliders. Note that if you change\nyour JACK server parameters you should always fetch the latency values again.\nThe latency values will be stored by Rosegarden for use next time."), frame), 0, 0, 0, 3); - tqlayout->addWidget(new TQLabel(i18n("JACK playback latency (in ms)"), frame), 1, 0); - tqlayout->addWidget(new TQLabel(i18n("JACK record latency (in ms)"), frame), 3, 0); + layout->addWidget(new TQLabel(i18n("JACK playback latency (in ms)"), frame), 1, 0); + layout->addWidget(new TQLabel(i18n("JACK record latency (in ms)"), frame), 3, 0); m_fetchLatencyValues = new TQPushButton(i18n("Fetch JACK latencies"), frame); - tqlayout->addWidget(m_fetchLatencyValues, 1, 3); + layout->addWidget(m_fetchLatencyValues, 1, 3); connect(m_fetchLatencyValues, TQT_SIGNAL(released()), TQT_SLOT(slotFetchLatencyValues())); @@ -80,19 +80,19 @@ LatencyConfigurationPage::LatencyConfigurationPage(RosegardenGUIDoc *doc, m_jackPlayback = new TQSlider(Horizontal, frame); m_jackPlayback->setTickmarks(TQSlider::Below); - tqlayout->addMultiCellWidget(m_jackPlayback, 3, 3, 2, 3); + layout->addMultiCellWidget(m_jackPlayback, 3, 3, 2, 3); TQLabel *jackPlaybackLabel = new TQLabel(TQString("%1").arg(jackPlaybackValue), frame); - tqlayout->addWidget(jackPlaybackLabel, 2, 2, TQt::AlignHCenter); + layout->addWidget(jackPlaybackLabel, 2, 2, TQt::AlignHCenter); connect(m_jackPlayback, TQT_SIGNAL(valueChanged(int)), jackPlaybackLabel, TQT_SLOT(setNum(int))); m_jackPlayback->setMinValue(0); - tqlayout->addWidget(new TQLabel("0", frame), 3, 1, TQt::AlignRight); + layout->addWidget(new TQLabel("0", frame), 3, 1, TQt::AlignRight); m_jackPlayback->setMaxValue(500); - tqlayout->addWidget(new TQLabel("500", frame), 3, 4, TQt::AlignLeft); + layout->addWidget(new TQLabel("500", frame), 3, 4, TQt::AlignLeft); m_jackPlayback->setValue(jackPlaybackValue); @@ -103,20 +103,20 @@ LatencyConfigurationPage::LatencyConfigurationPage(RosegardenGUIDoc *doc, m_jackRecord = new TQSlider(Horizontal, frame); m_jackRecord->setTickmarks(TQSlider::Below); - tqlayout->addMultiCellWidget(m_jackRecord, 5, 5, 2, 3); + layout->addMultiCellWidget(m_jackRecord, 5, 5, 2, 3); TQLabel *jackRecordLabel = new TQLabel(TQString("%1").arg(jackRecordValue), frame); - tqlayout->addWidget(jackRecordLabel, 4, 2, TQt::AlignHCenter); + layout->addWidget(jackRecordLabel, 4, 2, TQt::AlignHCenter); connect(m_jackRecord, TQT_SIGNAL(valueChanged(int)), jackRecordLabel, TQT_SLOT(setNum(int))); m_jackRecord->setMinValue(0); - tqlayout->addWidget(new TQLabel("0", frame), 5, 1, TQt::AlignRight); + layout->addWidget(new TQLabel("0", frame), 5, 1, TQt::AlignRight); m_jackRecord->setMaxValue(500); m_jackRecord->setValue(jackRecordValue); - tqlayout->addWidget(new TQLabel("500", frame), 5, 4, TQt::AlignLeft); + layout->addWidget(new TQLabel("500", frame), 5, 4, TQt::AlignLeft); addTab(frame, i18n("JACK Latency")); #endif // HAVE_LIBJACK -- cgit v1.2.1