[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [37233] trunk/blender/source/blender: spelling corrections

Campbell Barton ideasman42 at gmail.com
Mon Jun 6 02:48:10 CEST 2011


Revision: 37233
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=37233
Author:   campbellbarton
Date:     2011-06-06 00:48:10 +0000 (Mon, 06 Jun 2011)
Log Message:
-----------
spelling corrections

Modified Paths:
--------------
    trunk/blender/source/blender/editors/screen/area.c
    trunk/blender/source/blender/windowmanager/intern/wm_event_system.c

Modified: trunk/blender/source/blender/editors/screen/area.c
===================================================================
--- trunk/blender/source/blender/editors/screen/area.c	2011-06-06 00:42:36 UTC (rev 37232)
+++ trunk/blender/source/blender/editors/screen/area.c	2011-06-06 00:48:10 UTC (rev 37233)
@@ -1138,7 +1138,7 @@
 		/* tell WM to refresh, cursor types etc */
 		WM_event_add_mousemove(C);
 				
-		/*send space change notifyer*/
+		/*send space change notifier*/
 		WM_event_add_notifier(C, NC_SPACE|ND_SPACE_CHANGED, sa);
 		
 		ED_area_tag_refresh(sa);
@@ -1165,7 +1165,7 @@
 	}
 	ED_area_tag_redraw(sa);
 
-	/*send space change notifyer*/
+	/*send space change notifier*/
 	WM_event_add_notifier(C, NC_SPACE|ND_SPACE_CHANGED, sa);
 }
 
@@ -1213,7 +1213,7 @@
 	ED_area_newspace(C, CTX_wm_area(C), CTX_wm_area(C)->butspacetype);
 	ED_area_tag_redraw(CTX_wm_area(C));
 
-	/*send space change notifyer*/
+	/*send space change notifier*/
 	WM_event_add_notifier(C, NC_SPACE|ND_SPACE_CHANGED, CTX_wm_area(C));
 }
 

Modified: trunk/blender/source/blender/windowmanager/intern/wm_event_system.c
===================================================================
--- trunk/blender/source/blender/windowmanager/intern/wm_event_system.c	2011-06-06 00:42:36 UTC (rev 37232)
+++ trunk/blender/source/blender/windowmanager/intern/wm_event_system.c	2011-06-06 00:48:10 UTC (rev 37233)
@@ -340,7 +340,7 @@
 	int is_wheel= ELEM(event->type, WHEELUPMOUSE, WHEELDOWNMOUSE);
 	int retval;
 	
-	/* UI is quite agressive with swallowing events, like scrollwheel */
+	/* UI is quite aggressive with swallowing events, like scrollwheel */
 	/* I realize this is not extremely nice code... when UI gets keymaps it can be maybe smarter */
 	if(do_wheel_ui==0) {
 		if(is_wheel)
@@ -1577,7 +1577,7 @@
 			 *   so check for mouse moves too.
 			 * note2: the first click event will be handled but still used to create a
 			 *   double click event if clicking again quickly.
-			 *   If no double click events are found itwill fallback to a single click.
+			 *   If no double click events are found it will fallback to a single click.
 			 *   So a double click event can result in 2 successive single click calls
 			 *   if its not handled by the keymap - campbell */
 			if (	(ABS(event->x - win->eventstate->prevclickx)) <= 2 &&




More information about the Bf-blender-cvs mailing list