rename config apply cmds

This commit is contained in:
Tony Crisci 2017-12-16 12:14:24 -05:00
parent f4a5a0ead4
commit f16aa3c0ad
20 changed files with 37 additions and 22 deletions

View file

@ -57,7 +57,7 @@ struct cmd_results *checkarg(int argc, const char *name, enum expected_args type
return error;
}
void input_cmd_apply(struct input_config *input) {
void apply_input_config(struct input_config *input) {
int i;
i = list_seq_find(config->input_configs, input_identifier_cmp, input->identifier);
if (i >= 0) {
@ -74,7 +74,7 @@ void input_cmd_apply(struct input_config *input) {
sway_input_manager_apply_input_config(input_manager, input);
}
void seat_cmd_apply(struct seat_config *seat) {
void apply_seat_config(struct seat_config *seat) {
int i;
i = list_seq_find(config->seat_configs, seat_name_cmp, seat->name);
if (i >= 0) {