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>2009-08-17 22:07:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-08-17 22:07:40 +0400
commit6aeb2f687ae1d41715351ef265a0e0a9af06121a (patch)
treeec35ddafb03209d326c426f02b86b74db8cbc12e /source/blender/makesrna
parente19e654d84ccb697941586df74a42cf3bd13ca96 (diff)
- rna sequence sound was referencing unknown struct
- cmake was using libs that were disabled (whitespace changes too) - unit conversion missing checks for % ~ & operators
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_sequence.c2
1 files changed, 1 insertions, 1 deletions
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);