From a3a855ce18bdb905ef57b9feb174afc441132665 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 2 Jan 2024 11:38:07 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit e9f46130c2656aaf299d8793556310c9bf95daee) --- src/gui/dialogs/TupletDialog.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/gui/dialogs/TupletDialog.cpp') diff --git a/src/gui/dialogs/TupletDialog.cpp b/src/gui/dialogs/TupletDialog.cpp index c6e70ab..b2f7fe6 100644 --- a/src/gui/dialogs/TupletDialog.cpp +++ b/src/gui/dialogs/TupletDialog.cpp @@ -103,7 +103,7 @@ TupletDialog::TupletDialog(TQWidget *parent, Note::Type defaultUnitType, m_hasTimingAlready->setChecked(false); timingLayout->addMultiCellWidget(m_hasTimingAlready, 2, 2, 0, 2); - connect(m_hasTimingAlready, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotHasTimingChanged())); + connect(m_hasTimingAlready, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotHasTimingChanged())); updateUntupledCombo(); updateTupledCombo(); @@ -157,18 +157,18 @@ TupletDialog::TupletDialog(TQWidget *parent, Note::Type defaultUnitType, updateTimingDisplays(); - TQObject::connect(m_unitCombo, TQT_SIGNAL(activated(const TQString &)), - this, TQT_SLOT(slotUnitChanged(const TQString &))); + TQObject::connect(m_unitCombo, TQ_SIGNAL(activated(const TQString &)), + this, TQ_SLOT(slotUnitChanged(const TQString &))); - TQObject::connect(m_untupledCombo, TQT_SIGNAL(activated(const TQString &)), - this, TQT_SLOT(slotUntupledChanged(const TQString &))); - TQObject::connect(m_untupledCombo, TQT_SIGNAL(textChanged(const TQString &)), - this, TQT_SLOT(slotUntupledChanged(const TQString &))); + TQObject::connect(m_untupledCombo, TQ_SIGNAL(activated(const TQString &)), + this, TQ_SLOT(slotUntupledChanged(const TQString &))); + TQObject::connect(m_untupledCombo, TQ_SIGNAL(textChanged(const TQString &)), + this, TQ_SLOT(slotUntupledChanged(const TQString &))); - TQObject::connect(m_tupledCombo, TQT_SIGNAL(activated(const TQString &)), - this, TQT_SLOT(slotTupledChanged(const TQString &))); - TQObject::connect(m_tupledCombo, TQT_SIGNAL(textChanged(const TQString &)), - this, TQT_SLOT(slotTupledChanged(const TQString &))); + TQObject::connect(m_tupledCombo, TQ_SIGNAL(activated(const TQString &)), + this, TQ_SLOT(slotTupledChanged(const TQString &))); + TQObject::connect(m_tupledCombo, TQ_SIGNAL(textChanged(const TQString &)), + this, TQ_SLOT(slotTupledChanged(const TQString &))); } void -- cgit v1.2.3