summaryrefslogtreecommitdiffstats
path: root/src/controllers/controlpickermenu.cpp
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2020-10-18 23:31:04 -0500
committerBe <be@mixxx.org>2020-10-19 17:31:28 -0500
commite76d2816a3706e13fe4ca0c705a0f33c2e1c2300 (patch)
treec8c6bc62f5a26109c72a3ccb4355ed6b376f6995 /src/controllers/controlpickermenu.cpp
parent68346aea02b53a9473a795f7bb71fb68a9ca1b59 (diff)
rename EffectChainSlot to EffectChain
Diffstat (limited to 'src/controllers/controlpickermenu.cpp')
-rw-r--r--src/controllers/controlpickermenu.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/controllers/controlpickermenu.cpp b/src/controllers/controlpickermenu.cpp
index ae87cbcb11..c61c4bc5f2 100644
--- a/src/controllers/controlpickermenu.cpp
+++ b/src/controllers/controlpickermenu.cpp
@@ -7,7 +7,6 @@
#include "effects/defs.h"
#include "effects/effectslot.h"
#include "effects/effectknobparameterslot.h"
-#include "effects/specialeffectchainslots.h"
ControlPickerMenu::ControlPickerMenu(QWidget* pParent)
: QMenu(pParent) {
@@ -162,7 +161,7 @@ ControlPickerMenu::ControlPickerMenu(QWidget* pParent)
for (int deck = 1; deck <= iNumDecks; ++deck) {
QMenu* deckMenu = addSubmenu(QString("Deck %1").arg(deck), eqMenu);
for (int effect = kMaxEqs - 1; effect >= 0; --effect) {
- const QString group = EqualizerEffectChainSlot::formatEffectChainSlotGroup(
+ const QString group = EqualizerEffectChain::formatEffectChainGroup(
QString("[Channel%1]").arg(deck));
QMenu* bandMenu = addSubmenu(eqNames[effect], deckMenu);
QString control = "parameter%1";
@@ -469,7 +468,7 @@ ControlPickerMenu::ControlPickerMenu(QWidget* pParent)
for (int iEffectUnitNumber = 1; iEffectUnitNumber <= kNumStandardEffectUnits;
++iEffectUnitNumber) {
const QString effectUnitGroup =
- StandardEffectChainSlot::formatEffectChainSlotGroup(
+ StandardEffectChain::formatEffectChainGroup(
iEffectUnitNumber - 1);
descriptionPrefix = QString("%1, %2").arg(m_effectRackStr.arg(iRackNumber),
@@ -591,7 +590,7 @@ ControlPickerMenu::ControlPickerMenu(QWidget* pParent)
for (int iEffectSlotNumber = 1; iEffectSlotNumber <= numEffectSlots;
++iEffectSlotNumber) {
const QString effectSlotGroup =
- StandardEffectChainSlot::formatEffectSlotGroup(
+ StandardEffectChain::formatEffectSlotGroup(
iEffectUnitNumber - 1, iEffectSlotNumber - 1);
QMenu* effectSlotMenu = addSubmenu(m_effectStr.arg(iEffectSlotNumber),
@@ -628,7 +627,7 @@ ControlPickerMenu::ControlPickerMenu(QWidget* pParent)
// The parameter slot group is the same as the effect slot
// group on a standard effect rack.
const QString parameterSlotGroup =
- StandardEffectChainSlot::formatEffectSlotGroup(
+ StandardEffectChain::formatEffectSlotGroup(
iEffectUnitNumber - 1, iEffectSlotNumber - 1);
const QString parameterSlotItemPrefix = EffectKnobParameterSlot::formatItemPrefix(
iParameterSlotNumber - 1);