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>2021-10-06 01:28:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-06 01:28:00 +0300
commit6d2b486e431dae57536a5a7d9b64c62144754363 (patch)
treec08b4fb3a5f33ee71615e38d1b77bd6820fd4e9c /source/blender/windowmanager/WM_types.h
parent7b5835c793fbc5459ad64be4e8c7ceabd45cd668 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/windowmanager/WM_types.h')
-rw-r--r--source/blender/windowmanager/WM_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/windowmanager/WM_types.h b/source/blender/windowmanager/WM_types.h
index 14a69d9c435..28c7a270554 100644
--- a/source/blender/windowmanager/WM_types.h
+++ b/source/blender/windowmanager/WM_types.h
@@ -732,16 +732,16 @@ typedef struct wmXrActionData {
eXrActionType type;
/** State. Set appropriately based on type. */
float state[2];
- /** State of the other subaction path for bimanual actions. */
+ /** State of the other sub-action path for bimanual actions. */
float state_other[2];
/** Input threshold for float/vector2f actions. */
float float_threshold;
- /** Controller aim pose corresponding to the action's subaction path. */
+ /** Controller aim pose corresponding to the action's sub-action path. */
float controller_loc[3];
float controller_rot[4];
- /** Controller aim pose of the other subaction path for bimanual actions. */
+ /** Controller aim pose of the other sub-action path for bimanual actions. */
float controller_loc_other[3];
float controller_rot_other[4];
@@ -749,14 +749,14 @@ typedef struct wmXrActionData {
struct wmOperatorType *ot;
struct IDProperty *op_properties;
- /** Whether bimanual interaction is occuring. */
+ /** Whether bimanual interaction is occurring. */
bool bimanual;
} wmXrActionData;
#endif
/** Timer flags. */
typedef enum {
- /** Do not attempt to free customdata pointer even if non-NULL. */
+ /** Do not attempt to free custom-data pointer even if non-NULL. */
WM_TIMER_NO_FREE_CUSTOM_DATA = 1 << 0,
} wmTimerFlags;