From 3a7fd309fce89213b0224b3c6807adb2d1fe7ca8 Mon Sep 17 00:00:00 2001 From: Harley Acheson Date: Mon, 19 Oct 2020 08:12:33 -0700 Subject: Spelling: It's Versus Its Corrects incorrect usage of contraction for 'it is', when possessive 'its' was required. Differential Revision: https://developer.blender.org/D9250 Reviewed by Campbell Barton --- source/blender/windowmanager/gizmo/WM_gizmo_types.h | 6 +++--- source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/windowmanager/gizmo') diff --git a/source/blender/windowmanager/gizmo/WM_gizmo_types.h b/source/blender/windowmanager/gizmo/WM_gizmo_types.h index 8e2b5e04e42..8f84c02be12 100644 --- a/source/blender/windowmanager/gizmo/WM_gizmo_types.h +++ b/source/blender/windowmanager/gizmo/WM_gizmo_types.h @@ -82,7 +82,7 @@ typedef enum eWM_GizmoFlag { * Needed when the gizmo needs to align with the interface underneath it. */ WM_GIZMO_DRAW_NO_SCALE = (1 << 7), /** - * Hide the cursor and lock it's position while interacting with this gizmo. + * Hide the cursor and lock its position while interacting with this gizmo. */ WM_GIZMO_MOVE_CURSOR = (1 << 8), /** Don't write into the depth buffer when selecting. */ @@ -92,7 +92,7 @@ typedef enum eWM_GizmoFlag { WM_GIZMO_OPERATOR_TOOL_INIT = (1 << 10), /** Don't pass through events to other handlers - * (allows click/drag not to have it's events stolen by press events in other keymaps). */ + * (allows click/drag not to have its events stolen by press events in other keymaps). */ WM_GIZMO_EVENT_HANDLE_ALL = (1 << 11), /** Don't use tool-tips for this gizmo (can be distracting). */ @@ -382,7 +382,7 @@ typedef struct wmGizmoType { /** Called when gizmo selection state changes. */ wmGizmoFnSelectRefresh select_refresh; - /** Free data (not the gizmo it's self), use when the gizmo allocates it's own members. */ + /** Free data (not the gizmo itself), use when the gizmo allocates its own members. */ wmGizmoFnFree free; /** RNA for properties. */ diff --git a/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c b/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c index 34710d82f95..eea046cd1cf 100644 --- a/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c +++ b/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c @@ -444,7 +444,7 @@ static bool gizmo_tweak_start_and_finish( wmWindowManager *wm = CTX_wm_manager(C); wmOperator *op = WM_operator_last_redo(C); - /* We may want to enable this, for now the gizmo can manage it's own properties. */ + /* We may want to enable this, for now the gizmo can manage its own properties. */ #if 0 IDP_MergeGroup(gzop->ptr.data, op->properties, false); #endif -- cgit v1.2.3