summaryrefslogtreecommitdiffstats
path: root/src/effects/effectchainslot.cpp
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2020-04-01 18:11:51 -0500
committerBe <be@mixxx.org>2020-04-01 18:11:51 -0500
commit979849fee993c6f783436293b2c50703265dce1b (patch)
treeb47f08530d7b8bf2a099f924420b6c1ada227d31 /src/effects/effectchainslot.cpp
parent3d8d1398022e79d71e2edf264099dc687e8b1c19 (diff)
parentb717efed655d7451df15afaf04c229c6eb032a47 (diff)
Merge remote-tracking branch 'upstream/master' into effects_refactoring
Diffstat (limited to 'src/effects/effectchainslot.cpp')
-rw-r--r--src/effects/effectchainslot.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/effects/effectchainslot.cpp b/src/effects/effectchainslot.cpp
index 8f456055f6..67d6297602 100644
--- a/src/effects/effectchainslot.cpp
+++ b/src/effects/effectchainslot.cpp
@@ -176,7 +176,7 @@ const QString& EffectChainSlot::name() const {
void EffectChainSlot::setName(const QString& name) {
m_name = name;
- emit(updated());
+ emit updated();
}
QString EffectChainSlot::description() const {
@@ -185,7 +185,7 @@ QString EffectChainSlot::description() const {
void EffectChainSlot::setDescription(const QString& description) {
m_description = description;
- emit(updated());
+ emit updated();
}
void EffectChainSlot::loadEffect(const unsigned int iEffectSlotNumber,
@@ -308,9 +308,9 @@ void EffectChainSlot::slotControlChainSuperParameter(double v, bool force) {
void EffectChainSlot::slotControlChainSelector(double v) {
// qDebug() << debugString() << "slotControlChainSelector" << v;
// if (v > 0) {
-// emit(nextChain(m_iChainSlotNumber, m_pEffectChain));
+// emit nextChain(m_iChainSlotNumber, m_pEffectChain);
// } else if (v < 0) {
-// emit(prevChain(m_iChainSlotNumber, m_pEffectChain));
+// emit prevChain(m_iChainSlotNumber, m_pEffectChain);
// }
}