From 405e8cfc9e83cd4aa6b61f20d64a6514b02be7cd Mon Sep 17 00:00:00 2001 From: David Rowe Date: Sun, 2 Apr 2017 12:58:24 +1200 Subject: [PATCH] Fix typo noticed in passing --- libraries/shared/src/PointerEvent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/src/PointerEvent.h b/libraries/shared/src/PointerEvent.h index cdea0aa3ed..ab77328fc1 100644 --- a/libraries/shared/src/PointerEvent.h +++ b/libraries/shared/src/PointerEvent.h @@ -64,7 +64,7 @@ private: glm::vec3 _normal; // surface normal glm::vec3 _direction; // incoming direction of pointer ray. - Button _button { NoButtons }; // button assosiated with this event, (if type is Press, this will be the button that is pressed) + Button _button { NoButtons }; // button associated with this event, (if type is Press, this will be the button that is pressed) uint32_t _buttons { NoButtons }; // the current state of all the buttons. Qt::KeyboardModifiers _keyboardModifiers; // set of keys held when event was generated };