summaryrefslogtreecommitdiffstats
path: root/src/effects/effectchain.h
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2015-02-24 10:42:16 -0500
committerRJ Ryan <rryan@mixxx.org>2015-02-24 14:57:01 -0500
commit1eae9206eecd20c6ba54ce8612a529200a95d1a7 (patch)
treeb60ccaa6c26b210f180c978f6136abbd5e300720 /src/effects/effectchain.h
parent960b21e8741e850754882c8c12cc4c7127ec6d6d (diff)
Naming refactors.
* Update GroupEffectProcessor, native effects and related code to refer to channels instead of groups. * Change most ChannelHandleAndGroup variables to be named handle_group to hint that it's a pair-like object.
Diffstat (limited to 'src/effects/effectchain.h')
-rw-r--r--src/effects/effectchain.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/effects/effectchain.h b/src/effects/effectchain.h
index 594eafdb36..14f58ae85a 100644
--- a/src/effects/effectchain.h
+++ b/src/effects/effectchain.h
@@ -37,11 +37,11 @@ class EffectChain : public QObject {
bool enabled() const;
void setEnabled(bool enabled);
- // Activates EffectChain processing for the provided group.
- void enableForChannel(const ChannelHandleAndGroup& group);
- bool enabledForChannel(const ChannelHandleAndGroup& group) const;
+ // Activates EffectChain processing for the provided channel.
+ void enableForChannel(const ChannelHandleAndGroup& handle_group);
+ bool enabledForChannel(const ChannelHandleAndGroup& handle_group) const;
const QSet<ChannelHandleAndGroup>& enabledChannels() const;
- void disableForChannel(const ChannelHandleAndGroup& group);
+ void disableForChannel(const ChannelHandleAndGroup& handle_group);
EffectChainPointer prototype() const;