diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:38:07 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 17:29:20 +0900 |
| commit | a3a855ce18bdb905ef57b9feb174afc441132665 (patch) | |
| tree | 19c604d8c26146c0f36e8b13cfa02982f2196025 /src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp | |
| parent | 0d651f25b2871e8e16bf7a1c3563066489a7a0b2 (diff) | |
| download | rosegarden-a3a855ce18bdb905ef57b9feb174afc441132665.tar.gz rosegarden-a3a855ce18bdb905ef57b9feb174afc441132665.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e9f46130c2656aaf299d8793556310c9bf95daee)
Diffstat (limited to 'src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp')
| -rw-r--r-- | src/gui/editors/parameters/MIDIInstrumentParameterPanel.cpp | 40 |
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(); } |
