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:
authorMartin Poirier <theeth@yahoo.com>2009-12-17 23:01:02 +0300
committerMartin Poirier <theeth@yahoo.com>2009-12-17 23:01:02 +0300
commite210551a9c263d4dd4bf09b8fc2d135ffa5a634e (patch)
tree0ee51d60348b79e53eab33fdcc4bfe4936fe0344 /source/blender/windowmanager/wm_event_types.h
parent53edaee89b6512f1d4d01ed5f83a9d335d104257 (diff)
Typo in comment
Diffstat (limited to 'source/blender/windowmanager/wm_event_types.h')
-rw-r--r--source/blender/windowmanager/wm_event_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/windowmanager/wm_event_types.h b/source/blender/windowmanager/wm_event_types.h
index 043ad8b1dcc..8179154fc98 100644
--- a/source/blender/windowmanager/wm_event_types.h
+++ b/source/blender/windowmanager/wm_event_types.h
@@ -198,16 +198,16 @@
/* only used for KM_TEXTINPUT, so assume that we want all user-inputtable ascii codes included */
#define ISTEXTINPUT(event) (event >=' ' && event <=255)
- /* test wether the event is a key on the keyboard */
+ /* test whether the event is a key on the keyboard */
#define ISKEYBOARD(event) (event >=' ' && event <=320)
- /* test wether the event is a mouse button */
+ /* test whether the event is a mouse button */
#define ISMOUSE(event) (event >= LEFTMOUSE && event <= WHEELOUTMOUSE)
- /* test wether the event is timer event */
+ /* test whether the event is timer event */
#define ISTIMER(event) (event >= TIMER && event <= TIMERAUTOSAVE)
- /* test wether the event is tweak event */
+ /* test whether the event is tweak event */
#define ISTWEAK(event) (event >= EVT_TWEAK_L && event <= EVT_GESTURE)
/* test whether event type is acceptable as hotkey, excluding modifiers */