From ddf0bacaa9ce4019af6d838836a80f237e45d282 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 11 Nov 2021 14:57:17 +1100 Subject: Cleanup: typo in function name --- source/blender/editors/space_view3d/view3d_cursor_snap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/space_view3d/view3d_cursor_snap.c') diff --git a/source/blender/editors/space_view3d/view3d_cursor_snap.c b/source/blender/editors/space_view3d/view3d_cursor_snap.c index bb387adb82e..1213614704d 100644 --- a/source/blender/editors/space_view3d/view3d_cursor_snap.c +++ b/source/blender/editors/space_view3d/view3d_cursor_snap.c @@ -759,7 +759,7 @@ static void v3d_cursor_snap_update(V3DSnapCursorState *state, /** \name Callbacks * \{ */ -static bool v3d_cursor_snap_pool_fn(bContext *C) +static bool v3d_cursor_snap_poll_fn(bContext *C) { if (G.moving) { return false; @@ -898,7 +898,7 @@ static void v3d_cursor_snap_activate(void) } struct wmPaintCursor *pc = WM_paint_cursor_activate( - SPACE_VIEW3D, RGN_TYPE_WINDOW, v3d_cursor_snap_pool_fn, v3d_cursor_snap_draw_fn, NULL); + SPACE_VIEW3D, RGN_TYPE_WINDOW, v3d_cursor_snap_poll_fn, v3d_cursor_snap_draw_fn, NULL); data_intern->handle = pc; } } -- cgit v1.2.3