aboutsummaryrefslogtreecommitdiff
path: root/src/volume.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-06-03 06:55:04 +0200
committerMax Kellermann <max@duempel.org>2009-06-03 06:55:04 +0200
commitddc2694419442b68eac4c04069c991ecd2fa26ee (patch)
tree005978160f38610f7cb40f2b554dc85fb501a9c6 /src/volume.c
parent5c5d39b0124027fdd6ad035d784cbea97e7fecb7 (diff)
conf: eliminated CamelCase
Renamed all remaining CamelCase functions.
Diffstat (limited to 'src/volume.c')
-rw-r--r--src/volume.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/volume.c b/src/volume.c
index 9b103229..e7fa20a6 100644
--- a/src/volume.c
+++ b/src/volume.c
@@ -111,20 +111,20 @@ mixer_copy_legacy_param(const char *type, const char *name)
it does not match the mixer_type setting */
g_error("no '%s' audio output found", type);
- output = newConfigParam(NULL, param->line);
- addBlockParam(output, "type", type, param->line);
- addBlockParam(output, "name", type, param->line);
+ output = config_new_param(NULL, param->line);
+ config_add_block_param(output, "type", type, param->line);
+ config_add_block_param(output, "name", type, param->line);
config_add_param(CONF_AUDIO_OUTPUT, output);
}
- bp = getBlockParam(output, name);
+ bp = config_get_block_param(output, name);
if (bp != NULL)
g_error("the '%s' audio output already has a '%s' setting",
type, name);
/* duplicate the parameter in the configuration section */
- addBlockParam(output, name, param->value, param->line);
+ config_add_block_param(output, name, param->value, param->line);
}
static void