aboutsummaryrefslogtreecommitdiffstats
path: root/src/mixer/MixerInternal.hxx
diff options
context:
space:
mode:
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;
}
};