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>2008-12-19 21:48:41 +0300
committerTon Roosendaal <ton@blender.org>2008-12-19 21:48:41 +0300
commit12ad72ba8f4ab598c558428567707413e208eac7 (patch)
tree0de8a605541e28a91510af9f8441d9f848307bc8 /source/blender/windowmanager
parenta3d3619898f541b989bedca67ffc8592892ac4dc (diff)
2.5
Two bugfixes: - new WM_error() needed 'struct' in definition - fixed crash rrors reading files with curves.
Diffstat (limited to 'source/blender/windowmanager')
-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 ca0cecc79a0..19ddd43f7ec 100644
--- a/source/blender/windowmanager/WM_api.h
+++ b/source/blender/windowmanager/WM_api.h
@@ -110,7 +110,7 @@ int WM_operator_confirm (struct bContext *C, struct wmOperator *op, struct wm
int WM_operator_winactive (struct bContext *C);
/* default error box */
-void WM_error(bContext *C, char *str);
+void WM_error(struct bContext *C, char *str);
/* operator api */
wmOperatorType *WM_operatortype_find(const char *idname);