[Bf-blender-cvs] [da0d0b2] master: Compile fix

Joshua Leung noreply at git.blender.org
Sat Mar 28 15:08:04 CET 2015


Commit: da0d0b2f2091160e9d75015f8931d2bba82c43a0
Author: Joshua Leung
Date:   Fri Mar 13 19:22:36 2015 +1300
Branches: master
https://developer.blender.org/rBda0d0b2f2091160e9d75015f8931d2bba82c43a0

Compile fix

New parameter added by these fixes did not exist when this call got added

===================================================================

M	source/blender/editors/space_outliner/outliner_draw.c

===================================================================

diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 2c61e69..68d7cd8 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -202,7 +202,7 @@ static void restrictbutton_recursive_child(bContext *C, Scene *scene, Object *ob
 
 				RNA_id_pointer_create(&ob->id, &ptr);
 				prop = RNA_struct_find_property(&ptr, rnapropname);
-				fcu = rna_get_fcurve_context_ui(C, &ptr, prop, 0, NULL, &action, &driven);
+				fcu = rna_get_fcurve_context_ui(C, &ptr, prop, 0, NULL, &action, &driven, NULL);
 
 				if (fcu && !driven) {
 					id = ptr.id.data;




More information about the Bf-blender-cvs mailing list