aboutsummaryrefslogtreecommitdiffstats
path: root/src/mixer/MixerInternal.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-05 17:22:34 +0100
committerMax Kellermann <max@duempel.org>2014-02-05 17:22:34 +0100
commitf86e15953621901c468bfc2a1140c854a91b5a16 (patch)
tree40fd5828a87bd0acd14c8fc7f199bd7086537391 /src/mixer/MixerInternal.hxx
parent243c4e1e83ee85adc3719e85cd55522639fdd464 (diff)
downloadmpd-f86e15953621901c468bfc2a1140c854a91b5a16.tar.gz
mpd-f86e15953621901c468bfc2a1140c854a91b5a16.tar.xz
mpd-f86e15953621901c468bfc2a1140c854a91b5a16.zip
Mixer: rename struct mixer_plugin to MixerPlugin
Diffstat (limited to 'src/mixer/MixerInternal.hxx')
-rw-r--r--src/mixer/MixerInternal.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mixer/MixerInternal.hxx b/src/mixer/MixerInternal.hxx
index 1732b4f3b..108293740 100644
--- a/src/mixer/MixerInternal.hxx
+++ b/src/mixer/MixerInternal.hxx
@@ -26,7 +26,7 @@
class Mixer {
public:
- const struct mixer_plugin *plugin;
+ const MixerPlugin *plugin;
/**
* This mutex protects all of the mixer struct, including its
@@ -46,12 +46,12 @@ public:
bool failed;
public:
- Mixer(const mixer_plugin &_plugin)
+ Mixer(const MixerPlugin &_plugin)
:plugin(&_plugin),
open(false),
failed(false) {}
- bool IsPlugin(const mixer_plugin &other) const {
+ bool IsPlugin(const MixerPlugin &other) const {
return plugin == &other;
}
};