Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/windowmanager/WM_keymap.h')
-rw-r--r--source/blender/windowmanager/WM_keymap.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/source/blender/windowmanager/WM_keymap.h b/source/blender/windowmanager/WM_keymap.h
index f5488cbbe59..9645c95f62b 100644
--- a/source/blender/windowmanager/WM_keymap.h
+++ b/source/blender/windowmanager/WM_keymap.h
@@ -96,9 +96,13 @@ int WM_keymap_map_type_get(struct wmKeyMapItem *kmi);
/* Key Event */
-const char *WM_key_event_string(short type);
-int WM_key_event_operator_id(const struct bContext *C, const char *opname, int opcontext, struct IDProperty *properties, int hotkey, struct wmKeyMap **keymap_r);
-char *WM_key_event_operator_string(const struct bContext *C, const char *opname, int opcontext, struct IDProperty *properties, const bool strict, char *str, int len);
+const char *WM_key_event_string(short type);
+int WM_key_event_operator_id(
+ const struct bContext *C, const char *opname, int opcontext,
+ struct IDProperty *properties, const bool is_hotkey, struct wmKeyMap **keymap_r);
+char *WM_key_event_operator_string(
+ const struct bContext *C, const char *opname, int opcontext,
+ struct IDProperty *properties, const bool is_strict, char *str, int len);
const char *WM_bool_as_string(bool test);