diff options
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/key.h | 2 | ||||
-rw-r--r-- | src/input/mouseinput.h | 8 | ||||
-rw-r--r-- | src/input/touch/multitouchmanager.h | 1 |
3 files changed, 5 insertions, 6 deletions
diff --git a/src/input/key.h b/src/input/key.h index fe4438354..c0cc37b00 100644 --- a/src/input/key.h +++ b/src/input/key.h @@ -111,7 +111,7 @@ class Key final bool isLetter() const A_WARN_UNUSED; /** - * Gets the value of the key. If an ascii value exists it + * Gets the value of the key. If an ascii value exists it * will be returned. Otherwise an enum value will be returned. * * @return the value of the key. diff --git a/src/input/mouseinput.h b/src/input/mouseinput.h index 8470bc00d..7711381fa 100644 --- a/src/input/mouseinput.h +++ b/src/input/mouseinput.h @@ -169,18 +169,18 @@ class MouseInput final */ MouseButtonT mButton; - /** - * Holds the timestamp of the mouse input. Used to + /** + * Holds the timestamp of the mouse input. Used to * check for double clicks. */ int mTimeStamp; - /** + /** * Holds the x coordinate of the mouse input. */ int mX; - /** + /** * Holds the y coordinate of the mouse input. */ int mY; diff --git a/src/input/touch/multitouchmanager.h b/src/input/touch/multitouchmanager.h index c94af3711..25b56d3d8 100644 --- a/src/input/touch/multitouchmanager.h +++ b/src/input/touch/multitouchmanager.h @@ -68,4 +68,3 @@ class MultiTouchManager final extern MultiTouchManager multiTouchManager; #endif // INPUT_TOUCH_MULTITOUCHMANAGER_H - |