From 6aeb2f687ae1d41715351ef265a0e0a9af06121a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 17 Aug 2009 18:07:40 +0000 Subject: - rna sequence sound was referencing unknown struct - cmake was using libs that were disabled (whitespace changes too) - unit conversion missing checks for % ~ & operators --- source/blender/makesrna/intern/rna_sequence.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesrna') diff --git a/source/blender/makesrna/intern/rna_sequence.c b/source/blender/makesrna/intern/rna_sequence.c index 06f9972d93f..71f5b480061 100644 --- a/source/blender/makesrna/intern/rna_sequence.c +++ b/source/blender/makesrna/intern/rna_sequence.c @@ -742,7 +742,7 @@ static void rna_def_sound(BlenderRNA *brna) RNA_def_struct_sdna(srna, "Sequence"); prop= RNA_def_property(srna, "sound", PROP_POINTER, PROP_NONE); - RNA_def_property_struct_type(prop, "UnknownType"); + RNA_def_property_struct_type(prop, "Sound"); RNA_def_property_ui_text(prop, "Sound", "Sound datablock used by this sequence (RAM audio only)."); prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH); -- cgit v1.2.3