config: rename enum config_key_binding_type -> key_binding_type

This commit is contained in:
Daniel Eklöf 2022-02-08 19:02:28 +01:00
parent 56b948ca20
commit 9814d96206
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 7 additions and 7 deletions

View file

@ -1640,7 +1640,7 @@ mouse_button_code_to_name(int code)
static bool NOINLINE
value_to_key_combos(struct context *ctx, int action, struct argv *argv,
struct config_key_binding_list *bindings,
enum config_key_binding_type type)
enum key_binding_type type)
{
if (strcasecmp(ctx->value, "none") == 0) {
remove_from_key_bindings_list(bindings, action, argv);
@ -2002,7 +2002,7 @@ static bool NOINLINE
resolve_key_binding_collisions(struct config *conf, const char *section_name,
const char *const action_map[],
struct config_key_binding_list *bindings,
enum config_key_binding_type type)
enum key_binding_type type)
{
bool ret = true;