summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/parameters/TrackParameterBox.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:38:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 17:29:20 +0900
commita3a855ce18bdb905ef57b9feb174afc441132665 (patch)
tree19c604d8c26146c0f36e8b13cfa02982f2196025 /src/gui/editors/parameters/TrackParameterBox.cpp
parent0d651f25b2871e8e16bf7a1c3563066489a7a0b2 (diff)
downloadrosegarden-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/TrackParameterBox.cpp')
-rw-r--r--src/gui/editors/parameters/TrackParameterBox.cpp52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/gui/editors/parameters/TrackParameterBox.cpp b/src/gui/editors/parameters/TrackParameterBox.cpp
index e453543..febded0 100644
--- a/src/gui/editors/parameters/TrackParameterBox.cpp
+++ b/src/gui/editors/parameters/TrackParameterBox.cpp
@@ -304,8 +304,8 @@ TrackParameterBox::TrackParameterBox( RosegardenGUIDoc *doc,
groupLayout->addMultiCellWidget(m_transpLbl, row, row, 3, 4, AlignRight);
m_defTranspose = new KComboBox(m_defaultsGroup);
- connect(m_defTranspose, TQT_SIGNAL(activated(int)),
- TQT_SLOT(slotTransposeIndexChanged(int)));
+ connect(m_defTranspose, TQ_SIGNAL(activated(int)),
+ TQ_SLOT(slotTransposeIndexChanged(int)));
int transposeRange = 48;
for (int i = -transposeRange; i < transposeRange + 1; i++) {
@@ -359,43 +359,43 @@ TrackParameterBox::TrackParameterBox( RosegardenGUIDoc *doc,
mainLayout->setRowStretch(mainLayout->numRows() - 1, 1);
// Connections
- connect( m_playDevice, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotPlaybackDeviceChanged(int)));
+ connect( m_playDevice, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotPlaybackDeviceChanged(int)));
- connect( m_instrument, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotInstrumentChanged(int)));
+ connect( m_instrument, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotInstrumentChanged(int)));
- connect( m_recDevice, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotRecordingDeviceChanged(int)));
+ connect( m_recDevice, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotRecordingDeviceChanged(int)));
- connect( m_recChannel, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotRecordingChannelChanged(int)));
+ connect( m_recChannel, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotRecordingChannelChanged(int)));
- connect( m_defClef, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotClefChanged(int)));
+ connect( m_defClef, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotClefChanged(int)));
// Detect when the document colours are updated
- connect(m_doc, TQT_SIGNAL(docColoursChanged()),
- this, TQT_SLOT(slotDocColoursChanged()));
+ connect(m_doc, TQ_SIGNAL(docColoursChanged()),
+ this, TQ_SLOT(slotDocColoursChanged()));
// handle colour combo changes
- connect(m_defColor, TQT_SIGNAL(activated(int)),
- TQT_SLOT(slotColorChanged(int)));
+ connect(m_defColor, TQ_SIGNAL(activated(int)),
+ TQ_SLOT(slotColorChanged(int)));
- connect(m_highButton, TQT_SIGNAL(released()),
- TQT_SLOT(slotHighestPressed()));
+ connect(m_highButton, TQ_SIGNAL(released()),
+ TQ_SLOT(slotHighestPressed()));
- connect(m_lowButton, TQT_SIGNAL(released()),
- TQT_SLOT(slotLowestPressed()));
+ connect(m_lowButton, TQ_SIGNAL(released()),
+ TQ_SLOT(slotLowestPressed()));
- connect(m_presetButton, TQT_SIGNAL(released()),
- TQT_SLOT(slotPresetPressed()));
+ connect(m_presetButton, TQ_SIGNAL(released()),
+ TQ_SLOT(slotPresetPressed()));
- connect(m_staffSizeCombo, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotStaffSizeChanged(int)));
+ connect(m_staffSizeCombo, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotStaffSizeChanged(int)));
- connect(m_staffBracketCombo, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotStaffBracketChanged(int)));
+ connect(m_staffBracketCombo, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotStaffBracketChanged(int)));
}
TrackParameterBox::~TrackParameterBox()