summaryrefslogtreecommitdiffstats
path: root/src/gui/dialogs/TupletDialog.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/dialogs/TupletDialog.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/dialogs/TupletDialog.cpp')
-rw-r--r--src/gui/dialogs/TupletDialog.cpp22
1 files changed, 11 insertions, 11 deletions
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