diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:38:07 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 17:29:20 +0900 |
| commit | a3a855ce18bdb905ef57b9feb174afc441132665 (patch) | |
| tree | 19c604d8c26146c0f36e8b13cfa02982f2196025 /src/gui/editors/segment/TriggerSegmentManager.cpp | |
| parent | 0d651f25b2871e8e16bf7a1c3563066489a7a0b2 (diff) | |
| download | rosegarden-a3a855ce.tar.gz rosegarden-a3a855ce.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/segment/TriggerSegmentManager.cpp')
| -rw-r--r-- | src/gui/editors/segment/TriggerSegmentManager.cpp | 40 |
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) |
