summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp')
-rw-r--r--src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp b/src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp
index e837028..f962ef7 100644
--- a/src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp
+++ b/src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp
@@ -150,32 +150,32 @@ MIDIInstrumentParameterPanel::MIDIInstrumentParameterPanel(RosegardenGUIDoc *doc
// Connect up the toggle boxes
//
- connect(m_percussionCheckBox, TQT_SIGNAL(toggled(bool)),
- this, TQT_SLOT(slotTogglePercussion(bool)));
+ connect(m_percussionCheckBox, TQ_SIGNAL(toggled(bool)),
+ this, TQ_SLOT(slotTogglePercussion(bool)));
- connect(m_programCheckBox, TQT_SIGNAL(toggled(bool)),
- this, TQT_SLOT(slotToggleProgramChange(bool)));
+ connect(m_programCheckBox, TQ_SIGNAL(toggled(bool)),
+ this, TQ_SLOT(slotToggleProgramChange(bool)));
- connect(m_bankCheckBox, TQT_SIGNAL(toggled(bool)),
- this, TQT_SLOT(slotToggleBank(bool)));
+ connect(m_bankCheckBox, TQ_SIGNAL(toggled(bool)),
+ this, TQ_SLOT(slotToggleBank(bool)));
- connect(m_variationCheckBox, TQT_SIGNAL(toggled(bool)),
- this, TQT_SLOT(slotToggleVariation(bool)));
+ connect(m_variationCheckBox, TQ_SIGNAL(toggled(bool)),
+ this, TQ_SLOT(slotToggleVariation(bool)));
// Connect activations
//
- connect(m_bankValue, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotSelectBank(int)));
+ connect(m_bankValue, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotSelectBank(int)));
- connect(m_variationValue, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotSelectVariation(int)));
+ connect(m_variationValue, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotSelectVariation(int)));
- connect(m_programValue, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotSelectProgram(int)));
+ connect(m_programValue, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotSelectProgram(int)));
- connect(m_channelValue, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotSelectChannel(int)));
+ connect(m_channelValue, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotSelectChannel(int)));
// don't select any of the options in any dropdown
m_programValue->setCurrentItem( -1);
@@ -183,8 +183,8 @@ MIDIInstrumentParameterPanel::MIDIInstrumentParameterPanel(RosegardenGUIDoc *doc
m_channelValue->setCurrentItem( -1);
m_variationValue->setCurrentItem( -1);
- connect(m_rotaryMapper, TQT_SIGNAL(mapped(int)),
- this, TQT_SLOT(slotControllerChanged(int)));
+ connect(m_rotaryMapper, TQ_SIGNAL(mapped(int)),
+ this, TQ_SLOT(slotControllerChanged(int)));
}
void
@@ -415,8 +415,8 @@ MIDIInstrumentParameterPanel::setupControllers(MidiDevice *md)
// Connect
//
- connect(rotary, TQT_SIGNAL(valueChanged(float)),
- m_rotaryMapper, TQT_SLOT(map()));
+ connect(rotary, TQ_SIGNAL(valueChanged(float)),
+ m_rotaryMapper, TQ_SLOT(map()));
rmi = m_rotaries.end();
}