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:
authorTon Roosendaal <ton@blender.org>2009-02-01 15:00:00 +0300
committerTon Roosendaal <ton@blender.org>2009-02-01 15:00:00 +0300
commit00e2d763ffc6abca09b527fc64ee3dea78a4ce23 (patch)
tree0a5c4ac5600a9baa1163498494b18701f8ea5432 /source/blender/windowmanager/wm_event_system.h
parentb3c3af21569644e523f445ba4c67d7f88f8011bc (diff)
2.5
Moved 'redo last operator' stuff to WM level, with a WM_operator_repeat() Code in screen_ops was not checking all operator stuff correctly, so repeat menu (F3 now) crashed in cases.
Diffstat (limited to 'source/blender/windowmanager/wm_event_system.h')
-rw-r--r--source/blender/windowmanager/wm_event_system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/windowmanager/wm_event_system.h b/source/blender/windowmanager/wm_event_system.h
index 5205c8c17e1..d6899d47471 100644
--- a/source/blender/windowmanager/wm_event_system.h
+++ b/source/blender/windowmanager/wm_event_system.h
@@ -76,13 +76,13 @@ enum {
/* wm_event_system.c */
-void wm_event_add(wmWindow *win, wmEvent *event_to_add);
+void wm_event_add (wmWindow *win, wmEvent *event_to_add);
void wm_event_free_all (wmWindow *win);
/* goes over entire hierarchy: events -> window -> screen -> area -> region */
void wm_event_do_handlers (bContext *C);
-void wm_event_add_ghostevent(wmWindow *win, int type, void *customdata);
+void wm_event_add_ghostevent (wmWindow *win, int type, void *customdata);
void wm_event_do_notifiers (bContext *C);