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:
authorCampbell Barton <ideasman42@gmail.com>2019-05-02 04:42:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-02 04:45:46 +0300
commitc4962d9303c6276dfe15e12f992de2e988555b04 (patch)
tree1cdb2ff5804f503aadb45681c4f5a54fe9bba901 /source/blender/makesrna/intern/rna_wm_api.c
parent1bea76dd6a9fa88be0a3539517d9b266d0462fba (diff)
Cleanup: use WM_keymap_item_* prefix
Diffstat (limited to 'source/blender/makesrna/intern/rna_wm_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_wm_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_wm_api.c b/source/blender/makesrna/intern/rna_wm_api.c
index 3e7d16c636e..e4caeb2a5ae 100644
--- a/source/blender/makesrna/intern/rna_wm_api.c
+++ b/source/blender/makesrna/intern/rna_wm_api.c
@@ -82,7 +82,7 @@ static wmKeyMap *rna_keymap_active(wmKeyMap *km, bContext *C)
static void rna_keymap_restore_item_to_default(wmKeyMap *km, bContext *C, wmKeyMapItem *kmi)
{
- WM_keymap_restore_item_to_default(C, km, kmi);
+ WM_keymap_item_restore_to_default(C, km, kmi);
}
static void rna_Operator_report(wmOperator *op, int type, const char *msg)