diff options
Diffstat (limited to 'src/mixer')
-rw-r--r-- | src/mixer/MixerType.cxx | 2 | ||||
-rw-r--r-- | src/mixer/MixerType.hxx | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/mixer/MixerType.cxx b/src/mixer/MixerType.cxx index cd45db0d9..47016fd0a 100644 --- a/src/mixer/MixerType.cxx +++ b/src/mixer/MixerType.cxx @@ -23,7 +23,7 @@ #include <assert.h> #include <string.h> -enum mixer_type +MixerType mixer_type_parse(const char *input) { assert(input != NULL); diff --git a/src/mixer/MixerType.hxx b/src/mixer/MixerType.hxx index bfa2637b7..a5e635e06 100644 --- a/src/mixer/MixerType.hxx +++ b/src/mixer/MixerType.hxx @@ -20,7 +20,7 @@ #ifndef MPD_MIXER_TYPE_HXX #define MPD_MIXER_TYPE_HXX -enum mixer_type { +enum MixerType { /** parser error */ MIXER_TYPE_UNKNOWN, @@ -35,13 +35,13 @@ enum mixer_type { }; /** - * Parses a "mixer_type" setting from the configuration file. + * Parses a #MixerType setting from the configuration file. * * @param input the configured string value; must not be NULL - * @return a #mixer_type value; MIXER_TYPE_UNKNOWN means #input could + * @return a #MixerType value; MIXER_TYPE_UNKNOWN means #input could * not be parsed */ -enum mixer_type +MixerType mixer_type_parse(const char *input); #endif |