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:
authorCampbell Barton <ideasman42@gmail.com>2011-01-02 14:06:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-02 14:06:50 +0300
commita7ceeafd71534b21163b189a42af07358672d1c7 (patch)
tree4e240e2df81c8048a9a9081d6634a303683764a4 /source/blender/windowmanager
parent4119132580d8cf172e2b2ced86a7607d117b43c2 (diff)
- correct typos in comments.
- move boxpack struct out of the public header.
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_event_system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c
index dc944b71843..84c78669c64 100644
--- a/source/blender/windowmanager/intern/wm_event_system.c
+++ b/source/blender/windowmanager/intern/wm_event_system.c
@@ -2276,7 +2276,7 @@ void wm_event_add_ghostevent(wmWindowManager *wm, wmWindow *win, int type, int U
event.type= MOUSEMOVE;
/* some painting operators want accurate mouse events, they can
- handle inbetween mouse move moves, others can happily ignore
+ handle in between mouse move moves, others can happily ignore
them for better performance */
if(lastevent && lastevent->type == MOUSEMOVE)
lastevent->type = INBETWEEN_MOUSEMOVE;