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:
authorAntony Riakiotakis <kalast@gmail.com>2014-09-29 21:48:38 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-09-29 21:48:38 +0400
commit088ff210a949b0e5c999124d8ff3c74791616d87 (patch)
tree483509e4f0243d02f9bab36e793e8bc06da40536 /source/blender/windowmanager/WM_api.h
parent10a3ca018940bf7823b3bb4d9db63a4e8524a55f (diff)
Manipulator now uses the widget system (no operators used).
Widgets use a similar notification system as operators. It might be worth using WM_BREAK messages like the rest of the handlers. For now this should do.
Diffstat (limited to 'source/blender/windowmanager/WM_api.h')
-rw-r--r--source/blender/windowmanager/WM_api.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h
index b6153f41fe9..b16a61f08ec 100644
--- a/source/blender/windowmanager/WM_api.h
+++ b/source/blender/windowmanager/WM_api.h
@@ -469,7 +469,7 @@ struct wmWidget *WM_widget_new(bool (*poll)(const struct bContext *, struct wmWi
void WM_widgets_delete(ListBase *widgetlist, struct wmWidget *widget);
void WM_widgets_draw(const struct bContext *C, struct ARegion *ar);
-void WM_widget_handler_register(struct ARegion *ar);
+void WM_event_add_widget_handler(struct ARegion *ar);
bool WM_widget_register(ListBase *widgetlist, struct wmWidget *widget);
void WM_widget_unregister(ListBase *widgetlist, struct wmWidget *widget);