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>2008-12-04 01:35:38 +0300
committerJoshua Leung <aligorith@gmail.com>2008-12-04 01:35:38 +0300
commit48cd47ab5899d719d4dc043db7a846e56c2684dc (patch)
treed1dcc37eae2a8df97e328b1a5d9178e11adeab4b /source/blender/makesrna/intern/rna_key.c
parent6241b8a57f5f659fe065bafa53f771ec39ba163f (diff)
2.5 - compile fixes for Elubie's commit
Diffstat (limited to 'source/blender/makesrna/intern/rna_key.c')
-rw-r--r--source/blender/makesrna/intern/rna_key.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_key.c b/source/blender/makesrna/intern/rna_key.c
index 27d471a61e7..19cca60d5a4 100644
--- a/source/blender/makesrna/intern/rna_key.c
+++ b/source/blender/makesrna/intern/rna_key.c
@@ -56,7 +56,7 @@ void RNA_def_keyblock(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "CurrentValue", "Current Value.");
prop= RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE);
- RNA_def_property_enum_sdna(prop, NULL, "type", 0);
+ RNA_def_property_enum_sdna(prop, NULL, "type");
RNA_def_property_enum_items(prop, prop_keyblock_type_items);
RNA_def_property_ui_text(prop, "Type", "");