[Bf-blender-cvs] [98c8094e3a5] master: Correct arguments for callback

Campbell Barton noreply at git.blender.org
Fri Jul 27 08:41:14 CEST 2018


Commit: 98c8094e3a52edaec87bb9f61809e9ae573df430
Author: Campbell Barton
Date:   Fri Jul 27 16:41:18 2018 +1000
Branches: master
https://developer.blender.org/rB98c8094e3a52edaec87bb9f61809e9ae573df430

Correct arguments for callback

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

M	source/blender/editors/sound/sound_ops.c

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

diff --git a/source/blender/editors/sound/sound_ops.c b/source/blender/editors/sound/sound_ops.c
index c3ed2a7b9c2..b605bd6e1a7 100644
--- a/source/blender/editors/sound/sound_ops.c
+++ b/source/blender/editors/sound/sound_ops.c
@@ -481,7 +481,7 @@ static int sound_mixdown_invoke(bContext *C, wmOperator *op, const wmEvent *even
 
 #ifdef WITH_AUDASPACE
 
-static bool sound_mixdown_draw_check_prop(PointerRNA *UNUSED(ptr), PropertyRNA *prop)
+static bool sound_mixdown_draw_check_prop(PointerRNA *UNUSED(ptr), PropertyRNA *prop, void *UNUSED(user_data))
 {
 	const char *prop_id = RNA_property_identifier(prop);
 	return !(STREQ(prop_id, "filepath") ||



More information about the Bf-blender-cvs mailing list