summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/segment/TriggerSegmentManager.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/editors/segment/TriggerSegmentManager.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/editors/segment/TriggerSegmentManager.cpp')
-rw-r--r--src/gui/editors/segment/TriggerSegmentManager.cpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/gui/editors/segment/TriggerSegmentManager.cpp b/src/gui/editors/segment/TriggerSegmentManager.cpp
index cb343d9..d086a18 100644
--- a/src/gui/editors/segment/TriggerSegmentManager.cpp
+++ b/src/gui/editors/segment/TriggerSegmentManager.cpp
@@ -133,29 +133,29 @@ TriggerSegmentManager::TriggerSegmentManager(TQWidget *parent,
layout->addWidget(m_closeButton);
layout->addSpacing(5);
- connect(m_addButton, TQT_SIGNAL(released()),
- TQT_SLOT(slotAdd()));
+ connect(m_addButton, TQ_SIGNAL(released()),
+ TQ_SLOT(slotAdd()));
- connect(m_deleteButton, TQT_SIGNAL(released()),
- TQT_SLOT(slotDelete()));
+ connect(m_deleteButton, TQ_SIGNAL(released()),
+ TQ_SLOT(slotDelete()));
- connect(m_closeButton, TQT_SIGNAL(released()),
- TQT_SLOT(slotClose()));
+ connect(m_closeButton, TQ_SIGNAL(released()),
+ TQ_SLOT(slotClose()));
- connect(m_deleteAllButton, TQT_SIGNAL(released()),
- TQT_SLOT(slotDeleteAll()));
+ connect(m_deleteAllButton, TQ_SIGNAL(released()),
+ TQ_SLOT(slotDeleteAll()));
setupActions();
m_doc->getCommandHistory()->attachView(actionCollection());
- connect(m_doc->getCommandHistory(), TQT_SIGNAL(commandExecuted()),
- this, TQT_SLOT(slotUpdate()));
+ connect(m_doc->getCommandHistory(), TQ_SIGNAL(commandExecuted()),
+ this, TQ_SLOT(slotUpdate()));
- connect(m_listView, TQT_SIGNAL(doubleClicked(TQListViewItem *)),
- TQT_SLOT(slotEdit(TQListViewItem *)));
+ connect(m_listView, TQ_SIGNAL(doubleClicked(TQListViewItem *)),
+ TQ_SLOT(slotEdit(TQListViewItem *)));
- connect(m_listView, TQT_SIGNAL(pressed(TQListViewItem *)),
- this, TQT_SLOT(slotItemClicked(TQListViewItem *)));
+ connect(m_listView, TQ_SIGNAL(pressed(TQListViewItem *)),
+ this, TQ_SLOT(slotItemClicked(TQListViewItem *)));
// Highlight all columns - enable extended selection mode
//
@@ -374,11 +374,11 @@ void
TriggerSegmentManager::setupActions()
{
TDEAction* close = KStdAction::close(this,
- TQT_SLOT(slotClose()),
+ TQ_SLOT(slotClose()),
actionCollection());
m_closeButton->setText(close->text());
- connect(m_closeButton, TQT_SIGNAL(released()), this, TQT_SLOT(slotClose()));
+ connect(m_closeButton, TQ_SIGNAL(released()), this, TQ_SLOT(slotClose()));
TQString pixmapDir = TDEGlobal::dirs()->findResource("appdata", "pixmaps/");
@@ -396,7 +396,7 @@ TriggerSegmentManager::setupActions()
KStdAction::stdName(KStdAction::Redo));
new TDEAction(i18n("Pa&ste as New Triggered Segment"), CTRL + SHIFT + Key_V, this,
- TQT_SLOT(slotPasteAsNew()), actionCollection(),
+ TQ_SLOT(slotPasteAsNew()), actionCollection(),
"paste_to_trigger_segment");
kapp->config()->setGroup(TriggerManagerConfigGroup);
@@ -408,7 +408,7 @@ TriggerSegmentManager::setupActions()
TQIconSet icon(pixmap);
action = new TDERadioAction(i18n("&Musical Times"), icon, 0, this,
- TQT_SLOT(slotMusicalTime()),
+ TQ_SLOT(slotMusicalTime()),
actionCollection(), "time_musical");
action->setExclusiveGroup("timeMode");
if (timeMode == 0)
@@ -418,7 +418,7 @@ TriggerSegmentManager::setupActions()
icon = TQIconSet(pixmap);
action = new TDERadioAction(i18n("&Real Times"), icon, 0, this,
- TQT_SLOT(slotRealTime()),
+ TQ_SLOT(slotRealTime()),
actionCollection(), "time_real");
action->setExclusiveGroup("timeMode");
if (timeMode == 1)
@@ -428,7 +428,7 @@ TriggerSegmentManager::setupActions()
icon = TQIconSet(pixmap);
action = new TDERadioAction(i18n("Ra&w Times"), icon, 0, this,
- TQT_SLOT(slotRawTime()),
+ TQ_SLOT(slotRawTime()),
actionCollection(), "time_raw");
action->setExclusiveGroup("timeMode");
if (timeMode == 2)