Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
21c42819
Commit
21c42819
authored
Dec 02, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MixerType: rename to CamelCase
parent
5899a272
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
MixerType.cxx
src/mixer/MixerType.cxx
+1
-1
MixerType.hxx
src/mixer/MixerType.hxx
+4
-4
Init.cxx
src/output/Init.cxx
+1
-1
No files found.
src/mixer/MixerType.cxx
View file @
21c42819
...
...
@@ -23,7 +23,7 @@
#include <assert.h>
#include <string.h>
enum
mixer_t
ype
MixerT
ype
mixer_type_parse
(
const
char
*
input
)
{
assert
(
input
!=
NULL
);
...
...
src/mixer/MixerType.hxx
View file @
21c42819
...
...
@@ -20,7 +20,7 @@
#ifndef MPD_MIXER_TYPE_HXX
#define MPD_MIXER_TYPE_HXX
enum
mixer_t
ype
{
enum
MixerT
ype
{
/** 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_t
ype value; MIXER_TYPE_UNKNOWN means #input could
* @return a #
MixerT
ype value; MIXER_TYPE_UNKNOWN means #input could
* not be parsed
*/
enum
mixer_t
ype
MixerT
ype
mixer_type_parse
(
const
char
*
input
);
#endif
src/output/Init.cxx
View file @
21c42819
...
...
@@ -93,7 +93,7 @@ audio_output_detect(Error &error)
* mixer_enabled, if the mixer_type setting is not configured.
*/
gcc_pure
static
enum
mixer_t
ype
static
MixerT
ype
audio_output_mixer_type
(
const
config_param
&
param
)
{
/* read the local "mixer_type" setting */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment