summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/PitchChooser.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-02 12:06:34 +0900
commite9f46130c2656aaf299d8793556310c9bf95daee (patch)
tree19c604d8c26146c0f36e8b13cfa02982f2196025 /src/gui/widgets/PitchChooser.cpp
parent9b054308cef27a642eaa6e9a86db215151468e0b (diff)
downloadrosegarden-e9f46130c2656aaf299d8793556310c9bf95daee.tar.gz
rosegarden-e9f46130c2656aaf299d8793556310c9bf95daee.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/gui/widgets/PitchChooser.cpp')
-rw-r--r--src/gui/widgets/PitchChooser.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/gui/widgets/PitchChooser.cpp b/src/gui/widgets/PitchChooser.cpp
index d56b028..060009e 100644
--- a/src/gui/widgets/PitchChooser.cpp
+++ b/src/gui/widgets/PitchChooser.cpp
@@ -59,26 +59,26 @@ PitchChooser::PitchChooser(TQString title,
m_pitchLabel = new TQLabel(pl.getTQString(), hbox);
m_pitchLabel->setMinimumWidth(40);
- connect(m_pitch, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT(slotSetPitch(int)));
+ connect(m_pitch, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT(slotSetPitch(int)));
- connect(m_pitch, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SIGNAL(pitchChanged(int)));
+ connect(m_pitch, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SIGNAL(pitchChanged(int)));
- connect(m_pitch, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SIGNAL(preview(int)));
+ connect(m_pitch, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SIGNAL(preview(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(pitchDragged(int)),
- this, TQT_SLOT(slotSetPitch(int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(pitchDragged(int)),
+ this, TQ_SLOT(slotSetPitch(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int)),
- this, TQT_SLOT(slotSetPitch(int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(pitchChanged(int)),
+ this, TQ_SLOT(slotSetPitch(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int)),
- this, TQT_SIGNAL(pitchChanged(int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(pitchChanged(int)),
+ this, TQ_SIGNAL(pitchChanged(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(preview(int)),
- this, TQT_SIGNAL(preview(int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(preview(int)),
+ this, TQ_SIGNAL(preview(int)));
}