From b55e7e489504f43076eec423bc8dfb7efbeb4fac Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 15 Feb 2021 14:25:21 +0100 Subject: Cleanup: Spelling in function name --- source/blender/editors/space_clip/clip_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source') diff --git a/source/blender/editors/space_clip/clip_ops.c b/source/blender/editors/space_clip/clip_ops.c index 38a05eef6e3..0c54a042a1a 100644 --- a/source/blender/editors/space_clip/clip_ops.c +++ b/source/blender/editors/space_clip/clip_ops.c @@ -1837,7 +1837,7 @@ void CLIP_OT_cursor_set(wmOperatorType *ot) /** \name Toggle Lock To Selection Operator * \{ */ -static int lock_selection_togglee_exec(bContext *C, wmOperator *UNUSED(op)) +static int lock_selection_toggle_exec(bContext *C, wmOperator *UNUSED(op)) { SpaceClip *space_clip = CTX_wm_space_clip(C); @@ -1862,7 +1862,7 @@ void CLIP_OT_lock_selection_toggle(wmOperatorType *ot) /* api callbacks */ ot->poll = ED_space_clip_poll; - ot->exec = lock_selection_togglee_exec; + ot->exec = lock_selection_toggle_exec; /* flags */ ot->flag = OPTYPE_LOCK_BYPASS; -- cgit v1.2.3