summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/parameters
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editors/parameters')
-rw-r--r--src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp2
-rw-r--r--src/gui/editors/parameters/RosegardenParameterArea.cpp2
-rw-r--r--src/gui/editors/parameters/TrackParameterBox.cpp6
3 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp b/src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp
index 37ea57c..8186b07 100644
--- a/src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp
+++ b/src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp
@@ -1164,7 +1164,7 @@ MIDIInstrumentParameterPanel::showAdditionalControls(bool showThem)
m_instrumentLabel->setShown(showThem);
int index = 0;
for (RotaryMap::iterator it = m_rotaries.begin(); it != m_rotaries.end(); ++it) {
- it->second.first->tqparentWidget()->setShown(showThem || (index < 8));
+ it->second.first->parentWidget()->setShown(showThem || (index < 8));
//it->second.first->setShown(showThem || (index < 8));
//it->second.second->setShown(showThem || (index < 8));
index++;
diff --git a/src/gui/editors/parameters/RosegardenParameterArea.cpp b/src/gui/editors/parameters/RosegardenParameterArea.cpp
index 1fc924e..9d717a1 100644
--- a/src/gui/editors/parameters/RosegardenParameterArea.cpp
+++ b/src/gui/editors/parameters/RosegardenParameterArea.cpp
@@ -88,7 +88,7 @@ void RosegardenParameterArea::addRosegardenParameterBox(
m_scrollView->setMinimumWidth(std::max(m_scrollView->minimumWidth(),
b->tqsizeHint().width()) + 8);
- // Create a titled group box for the parameter box, tqparented by the
+ // Create a titled group box for the parameter box, parented by the
// classic tqlayout widget, so that it can be used to provide a title
// and outline, in classic mode. Add this container to an array that
// parallels the above array of parameter boxes.
diff --git a/src/gui/editors/parameters/TrackParameterBox.cpp b/src/gui/editors/parameters/TrackParameterBox.cpp
index a2a29c4..b481a71 100644
--- a/src/gui/editors/parameters/TrackParameterBox.cpp
+++ b/src/gui/editors/parameters/TrackParameterBox.cpp
@@ -527,12 +527,12 @@ TrackParameterBox::populateRecordingDeviceList()
m_recChannel->setEnabled(false);
// hide these for audio instruments
- m_defaultsGroup->tqparentWidget()->setShown(false);
+ m_defaultsGroup->parentWidget()->setShown(false);
} else { // InstrumentType::Midi and InstrumentType::SoftSynth
// show these if not audio instrument
- m_defaultsGroup->tqparentWidget()->setShown(true);
+ m_defaultsGroup->parentWidget()->setShown(true);
m_recDeviceIds.push_back(Device::ALL_DEVICES);
m_recDevice->insertItem(i18n("All"));
@@ -792,7 +792,7 @@ TrackParameterBox::slotInstrumentLabelChanged(InstrumentId id, TQString label)
void
TrackParameterBox::showAdditionalControls(bool showThem)
{
- // m_defaultsGroup->tqparentWidget()->setShown(showThem);
+ // m_defaultsGroup->parentWidget()->setShown(showThem);
}
void