[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [25452] trunk/blender/source/blender/ windowmanager/wm_event_types.h: Typo in comment

Martin Poirier theeth at yahoo.com
Thu Dec 17 21:01:02 CET 2009


Revision: 25452
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=25452
Author:   theeth
Date:     2009-12-17 21:01:02 +0100 (Thu, 17 Dec 2009)

Log Message:
-----------
Typo in comment

Modified Paths:
--------------
    trunk/blender/source/blender/windowmanager/wm_event_types.h

Modified: trunk/blender/source/blender/windowmanager/wm_event_types.h
===================================================================
--- trunk/blender/source/blender/windowmanager/wm_event_types.h	2009-12-17 19:55:08 UTC (rev 25451)
+++ trunk/blender/source/blender/windowmanager/wm_event_types.h	2009-12-17 20:01:02 UTC (rev 25452)
@@ -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 */





More information about the Bf-blender-cvs mailing list