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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-11-14 21:46:57 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-11-14 21:46:57 +0300
commita2cc29d22166fc535eb66c14f7878552ae422f63 (patch)
treead88930b4528a2ead92a87ebd993650a9888fa93 /source/blender/makesrna/intern/rna_dependency.c
parenta2175968a7a21bd09463ac9582130c593d27094d (diff)
RNA
* Rename cname to identifier. * Rename PropertyEnumItem to EnumPropertyItem. * Wrapped min/max/step/precision, pointer type for RNA. * Draw FLT_MAX a bit better in buttons.
Diffstat (limited to 'source/blender/makesrna/intern/rna_dependency.c')
-rw-r--r--source/blender/makesrna/intern/rna_dependency.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_dependency.c b/source/blender/makesrna/intern/rna_dependency.c
index a8f99a9dcb6..fe39a78fbe7 100644
--- a/source/blender/makesrna/intern/rna_dependency.c
+++ b/source/blender/makesrna/intern/rna_dependency.c
@@ -86,7 +86,7 @@ void RNA_test_dependencies_cb(void *udata, PointerRNA *from, PointerRNA *to)
if(prop) RNA_property_string_get(prop, to, nameto);
else strcpy(nameto, "unknown");
- printf("%s (%s) -> %s (%s)\n", name, from->type->cname, nameto, to->type->cname);
+ printf("%s (%s) -> %s (%s)\n", name, from->type->identifier, nameto, to->type->identifier);
}
#endif