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-09-29 13:19:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-29 13:19:15 +0400
commite5078f196fb3b7739865591977c876552396d418 (patch)
tree83838cea47d26486cc9bdb9dd1f67c8a28e0db8d /source/blender/python
parent4b2b8fe9bdb4b47a414c9315e515706bdb30194a (diff)
Attempt to fix error reported by yafaray devs from my commit r40660
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index 271e4c72a25..31a1d408599 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -6242,7 +6242,7 @@ static int bpy_class_call(bContext *C, PointerRNA *ptr, FunctionRNA *func, Param
/* annoying!, need to check if the screen gets set to NULL which is a
* hint that the file was actually re-loaded. */
- const char is_valid_screen= (CTX_wm_screen(C) != NULL);
+ const char is_valid_wm= (CTX_wm_manager(C) != NULL);
PropertyRNA *pret_single= NULL;
void *retdata_single= NULL;
@@ -6505,7 +6505,7 @@ static int bpy_class_call(bContext *C, PointerRNA *ptr, FunctionRNA *func, Param
if ( (!is_static) &&
(ptr->data) &&
(RNA_struct_is_a(ptr->type, &RNA_Operator)) &&
- is_valid_screen == (CTX_wm_screen(C) != NULL))
+ is_valid_wm == (CTX_wm_manager(C) != NULL))
{
wmOperator *op= ptr->data;
reports= op->reports;