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-02 12:06:34 +0900 |
commit | e9f46130c2656aaf299d8793556310c9bf95daee (patch) | |
tree | 19c604d8c26146c0f36e8b13cfa02982f2196025 /src/gui/widgets/AudioRouteMenu.cpp | |
parent | 9b054308cef27a642eaa6e9a86db215151468e0b (diff) | |
download | rosegarden-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/widgets/AudioRouteMenu.cpp')
-rw-r--r-- | src/gui/widgets/AudioRouteMenu.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/widgets/AudioRouteMenu.cpp b/src/gui/widgets/AudioRouteMenu.cpp index 02d33ba..7b2b120 100644 --- a/src/gui/widgets/AudioRouteMenu.cpp +++ b/src/gui/widgets/AudioRouteMenu.cpp @@ -58,15 +58,15 @@ AudioRouteMenu::AudioRouteMenu(TQWidget *par, case Compact: { m_combo = 0; m_button = new WheelyButton(par); - connect(m_button, TQT_SIGNAL(wheel(bool)), this, TQT_SLOT(slotWheel(bool))); - connect(m_button, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotShowMenu())); + connect(m_button, TQ_SIGNAL(wheel(bool)), this, TQ_SLOT(slotWheel(bool))); + connect(m_button, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotShowMenu())); break; } case Regular: { m_button = 0; m_combo = new KComboBox(par); - connect(m_combo, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotEntrySelected(int))); + connect(m_combo, TQ_SIGNAL(activated(int)), this, TQ_SLOT(slotEntrySelected(int))); break; } @@ -135,7 +135,7 @@ AudioRouteMenu::slotShowMenu() for (int i = 0; i < getNumEntries(); ++i) { - menu->insertItem(getEntryText(i), this, TQT_SLOT(slotEntrySelected(int)), + menu->insertItem(getEntryText(i), this, TQ_SLOT(slotEntrySelected(int)), 0, i); menu->setItemParameter(i, i); } |