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:
authorJoshua Leung <aligorith@gmail.com>2015-03-13 09:22:36 +0300
committerJoshua Leung <aligorith@gmail.com>2015-03-28 15:39:53 +0300
commitda0d0b2f2091160e9d75015f8931d2bba82c43a0 (patch)
tree1028fded7d0eaa594e1feeca6536c1b0c34e2894 /source/blender/editors/space_outliner/outliner_draw.c
parent90e9a22eaa817dcf5b0008f6c73edeab9a27f99e (diff)
Compile fix
New parameter added by these fixes did not exist when this call got added
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_draw.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 2c61e69d611..68d7cd8c475 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;