summaryrefslogtreecommitdiffstats
path: root/src/effects/effectchain.h
diff options
context:
space:
mode:
authorbe_ <be.0@gmx.com>2017-12-15 16:24:12 -0600
committerbe_ <be.0@gmx.com>2017-12-15 16:24:12 -0600
commitf8dc023001efd5a0a34b42905059e70dcc8e3132 (patch)
tree6a4cc99195e14853e38423c35d6b40bd1294ffc1 /src/effects/effectchain.h
parente67d599de5960fb3401472d46974c347f64820ee (diff)
clarify function names
Diffstat (limited to 'src/effects/effectchain.h')
-rw-r--r--src/effects/effectchain.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/effects/effectchain.h b/src/effects/effectchain.h
index 66a41d4300..f874552b62 100644
--- a/src/effects/effectchain.h
+++ b/src/effects/effectchain.h
@@ -38,10 +38,10 @@ class EffectChain : public QObject {
void setEnabled(bool enabled);
// Activates EffectChain processing for the provided channel.
- void enableForChannel(const ChannelHandleAndGroup& handle_group);
+ void enableForInputChannel(const ChannelHandleAndGroup& handle_group);
bool enabledForChannel(const ChannelHandleAndGroup& handle_group) const;
const QSet<ChannelHandleAndGroup>& enabledChannels() const;
- void disableForChannel(const ChannelHandleAndGroup& handle_group);
+ void disableForInputChannel(const ChannelHandleAndGroup& handle_group);
EffectChainPointer prototype() const;