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-07-02 10:38:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-02 11:05:10 +0300
commit10b694877b1065c262fdce22ab35be4752ad7076 (patch)
treeed7e492014f8407a9106ee5d06162b8d3af3603f /source/blender/windowmanager
parenta9635c63842d47009cbb9b9de7ca8afa112254bf (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/gizmo/WM_gizmo_types.h2
-rw-r--r--source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c2
-rw-r--r--source/blender/windowmanager/intern/wm_event_system.c2
-rw-r--r--source/blender/windowmanager/intern/wm_init_exit.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/windowmanager/gizmo/WM_gizmo_types.h b/source/blender/windowmanager/gizmo/WM_gizmo_types.h
index 2b74677a1a2..7bb77375934 100644
--- a/source/blender/windowmanager/gizmo/WM_gizmo_types.h
+++ b/source/blender/windowmanager/gizmo/WM_gizmo_types.h
@@ -320,7 +320,7 @@ typedef struct wmGizmoType {
wmGizmoFnDrawSelect draw_select;
/** Determine if the mouse intersects with the gizmo.
- * The calculation should be done in the callback itself, -1 for no seleciton. */
+ * The calculation should be done in the callback itself, -1 for no selection. */
wmGizmoFnTestSelect test_select;
/** Handler used by the gizmo. Usually handles interaction tied to a gizmo type. */
diff --git a/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c b/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c
index 6ec908bcf29..1c5fda2ec11 100644
--- a/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c
+++ b/source/blender/windowmanager/gizmo/intern/wm_gizmo_map.c
@@ -1239,7 +1239,7 @@ void wm_gizmos_keymap(wmKeyConfig *keyconf)
/** \} */ /* wmGizmoMapType */
/* -------------------------------------------------------------------- */
-/** \name Updates for Dynamic Type Registraion
+/** \name Updates for Dynamic Type Registration
*
* \{ */
diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c
index 24040568b7b..6ae682e678a 100644
--- a/source/blender/windowmanager/intern/wm_event_system.c
+++ b/source/blender/windowmanager/intern/wm_event_system.c
@@ -98,7 +98,7 @@
* Without tools using press events which would prevent click/drag events getting to the gizmos.
*
* This is not a fool proof solution since since it's possible the gizmo operators would pass
- * through thse events when called, see: T65479.
+ * through these events when called, see: T65479.
*/
#define USE_GIZMO_MOUSE_PRIORITY_HACK
diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c
index e74b3c1ef07..f3c94162786 100644
--- a/source/blender/windowmanager/intern/wm_init_exit.c
+++ b/source/blender/windowmanager/intern/wm_init_exit.c
@@ -166,7 +166,7 @@ void WM_init_state_start_with_console_set(bool value)
/**
* Since we cannot know in advance if we will require the draw manager
* context when starting blender in background mode (specially true with
- * scripts) we deferre the ghost initialization the most as possible
+ * scripts) we defer the ghost initialization the most as possible
* so that it does not break anything that can run in headless mode (as in
* without display server attached).
*/