summaryrefslogtreecommitdiffstats
path: root/src/effects/effectchainslot.cpp
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2020-06-14 10:41:04 -0500
committerBe <be@mixxx.org>2020-06-14 10:41:04 -0500
commit34170a3572c0ea2be4312ed07387b49700de9dc0 (patch)
treeccb4fb9e9cac11e02cb5186182bdd47c4841d6a5 /src/effects/effectchainslot.cpp
parent4bcd2bd3522bdeceb8b7d73d19cc109745580e85 (diff)
EffectChainSlot: fix variable initialization order
Diffstat (limited to 'src/effects/effectchainslot.cpp')
-rw-r--r--src/effects/effectchainslot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/effectchainslot.cpp b/src/effects/effectchainslot.cpp
index 8d4b6b3929..2b2107f2a2 100644
--- a/src/effects/effectchainslot.cpp
+++ b/src/effects/effectchainslot.cpp
@@ -21,11 +21,11 @@ EffectChainSlot::EffectChainSlot(const QString& group,
SignalProcessingStage stage)
: // The control group names are 1-indexed while internally everything
// is 0-indexed.
+ m_presetName(""),
m_pEffectsManager(pEffectsManager),
m_pChainPresetManager(pEffectsManager->getChainPresetManager()),
m_pMessenger(pEffectsMessenger),
m_group(group),
- m_presetName(""),
m_signalProcessingStage(stage),
m_pEngineEffectChain(nullptr) {
// qDebug() << "EffectChainSlot::EffectChainSlot " << group << ' ' << iChainNumber;