summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/guitar/GuitarChordSelectorDialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-02 11:38:07 +0900
committerMichele Calgaro <[email protected]>2024-01-02 12:06:34 +0900
commite9f46130c2656aaf299d8793556310c9bf95daee (patch)
tree19c604d8c26146c0f36e8b13cfa02982f2196025 /src/gui/editors/guitar/GuitarChordSelectorDialog.cpp
parent9b054308cef27a642eaa6e9a86db215151468e0b (diff)
downloadrosegarden-e9f46130c2656aaf299d8793556310c9bf95daee.tar.gz
rosegarden-e9f46130c2656aaf299d8793556310c9bf95daee.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/gui/editors/guitar/GuitarChordSelectorDialog.cpp')
-rw-r--r--src/gui/editors/guitar/GuitarChordSelectorDialog.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/gui/editors/guitar/GuitarChordSelectorDialog.cpp b/src/gui/editors/guitar/GuitarChordSelectorDialog.cpp
index f9845c1..ac1a266 100644
--- a/src/gui/editors/guitar/GuitarChordSelectorDialog.cpp
+++ b/src/gui/editors/guitar/GuitarChordSelectorDialog.cpp
@@ -63,8 +63,8 @@ GuitarChordSelectorDialog::GuitarChordSelectorDialog(TQWidget *parent)
m_chordComplexityCombo->insertItem(i18n("common"));
m_chordComplexityCombo->insertItem(i18n("all"));
- connect(m_chordComplexityCombo, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotComplexityChanged(int)));
+ connect(m_chordComplexityCombo, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotComplexityChanged(int)));
TQVBoxLayout* vboxLayout = new TQVBoxLayout(page, 5);
topLayout->addMultiCellLayout(vboxLayout, 1, 3, 2, 2);
@@ -74,12 +74,12 @@ GuitarChordSelectorDialog::GuitarChordSelectorDialog(TQWidget *parent)
vboxLayout->addWidget(m_deleteFingeringButton);
vboxLayout->addWidget(m_editFingeringButton);
- connect(m_newFingeringButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotNewFingering()));
- connect(m_deleteFingeringButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotDeleteFingering()));
- connect(m_editFingeringButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotEditFingering()));
+ connect(m_newFingeringButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotNewFingering()));
+ connect(m_deleteFingeringButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotDeleteFingering()));
+ connect(m_editFingeringButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotEditFingering()));
topLayout->addWidget(new TQLabel(i18n("Fingerings"), page), 0, 3);
m_fingeringsList = new TQListBox(page);
@@ -88,12 +88,12 @@ GuitarChordSelectorDialog::GuitarChordSelectorDialog(TQWidget *parent)
m_fingeringBox = new FingeringBox(false, page);
topLayout->addMultiCellWidget(m_fingeringBox, 2, 2, 0, 1);
- connect(m_rootNotesList, TQT_SIGNAL(highlighted(int)),
- this, TQT_SLOT(slotRootHighlighted(int)));
- connect(m_chordExtList, TQT_SIGNAL(highlighted(int)),
- this, TQT_SLOT(slotChordExtHighlighted(int)));
- connect(m_fingeringsList, TQT_SIGNAL(highlighted(TQListBoxItem*)),
- this, TQT_SLOT(slotFingeringHighlighted(TQListBoxItem*)));
+ connect(m_rootNotesList, TQ_SIGNAL(highlighted(int)),
+ this, TQ_SLOT(slotRootHighlighted(int)));
+ connect(m_chordExtList, TQ_SIGNAL(highlighted(int)),
+ this, TQ_SLOT(slotChordExtHighlighted(int)));
+ connect(m_fingeringsList, TQ_SIGNAL(highlighted(TQListBoxItem*)),
+ this, TQ_SLOT(slotFingeringHighlighted(TQListBoxItem*)));
}
void