summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/AudioFaderBox.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-09 18:25:42 +0900
committerMichele Calgaro <[email protected]>2023-12-10 00:57:53 +0900
commit0d651f25b2871e8e16bf7a1c3563066489a7a0b2 (patch)
treeab3b17b523e0ae3334541665a4625b99a42a76b1 /src/gui/widgets/AudioFaderBox.cpp
parentd226182192d460ae262962fe9d79604037bf9705 (diff)
downloadrosegarden-0d651f25b2871e8e16bf7a1c3563066489a7a0b2.tar.gz
rosegarden-0d651f25b2871e8e16bf7a1c3563066489a7a0b2.zip
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 9b054308cef27a642eaa6e9a86db215151468e0b)
Diffstat (limited to 'src/gui/widgets/AudioFaderBox.cpp')
-rw-r--r--src/gui/widgets/AudioFaderBox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/AudioFaderBox.cpp b/src/gui/widgets/AudioFaderBox.cpp
index a39209e..5103719 100644
--- a/src/gui/widgets/AudioFaderBox.cpp
+++ b/src/gui/widgets/AudioFaderBox.cpp
@@ -60,7 +60,7 @@ AudioFaderBox::AudioFaderBox(TQWidget *parent,
bool haveInOut,
const char *name):
TQFrame(parent, name),
- m_signalMapper(new TQSignalMapper(TQT_TQOBJECT(this))),
+ m_signalMapper(new TQSignalMapper(this)),
m_id(id),
m_isStereo(false)
{
@@ -80,7 +80,7 @@ AudioFaderBox::AudioFaderBox(TQWidget *parent,
(plugin, i18n("Audio plugin button"));
m_plugins.push_back(plugin);
- m_signalMapper->setMapping(TQT_TQOBJECT(plugin), i);
+ m_signalMapper->setMapping(plugin, i);
connect(plugin, TQT_SIGNAL(clicked()),
m_signalMapper, TQT_SLOT(map()));
}