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:
authorSergey Sharybin <sergey@blender.org>2021-02-15 16:25:21 +0300
committerSergey Sharybin <sergey@blender.org>2021-02-15 16:25:21 +0300
commitb55e7e489504f43076eec423bc8dfb7efbeb4fac (patch)
tree493b4defb98d8b9d1c3f2c35a3dcc9e128ee79fc /source/blender/editors/space_clip/clip_ops.c
parentd8754de7c31bc2ec775a73001132862e007f4c9a (diff)
Cleanup: Spelling in function name
Diffstat (limited to 'source/blender/editors/space_clip/clip_ops.c')
-rw-r--r--source/blender/editors/space_clip/clip_ops.c4
1 files changed, 2 insertions, 2 deletions
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;