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>2010-02-08 16:55:31 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-02-08 16:55:31 +0300
commitec7df03c867d28316708e9b91bec5cef0aee832e (patch)
tree3f560939b745032e235d9ac789c4117d669d6462 /source/blender/makesrna/intern/rna_ID.c
parent4c318539b2f6abdf8f2a02376b6fcb8d30a4b12e (diff)
Warning fixes, one actual bug found in sequencer sound wave drawing. Also
changed some malloc to MEM_mallocN while trying to track down a memory leak.
Diffstat (limited to 'source/blender/makesrna/intern/rna_ID.c')
-rw-r--r--source/blender/makesrna/intern/rna_ID.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c
index ac354366c25..a32e12da2f6 100644
--- a/source/blender/makesrna/intern/rna_ID.c
+++ b/source/blender/makesrna/intern/rna_ID.c
@@ -246,40 +246,6 @@ ID *rna_ID_copy(ID *id)
return NULL;
}
-static int rna_IDPropertyGroup_name_length(PointerRNA *ptr)
-{
- IDProperty *group=(IDProperty*)ptr->id.data;
- IDProperty *idprop;
- idprop= IDP_GetPropertyFromGroup(group, "name");
-
- if(idprop && idprop->type == IDP_STRING)
- return strlen(idprop->data.pointer);
- else
- return 0;
-}
-
-static void rna_IDPropertyGroup_name_get(PointerRNA *ptr, char *str)
-{
- IDProperty *group=(IDProperty*)ptr->id.data;
- IDProperty *idprop;
- idprop= IDP_GetPropertyFromGroup(group, "name");
-
- if(idprop && idprop->type == IDP_STRING)
- strcpy(str, idprop->data.pointer);
- else
- str[0]= '\0';
-}
-
-void rna_IDPropertyGroup_name_set(PointerRNA *ptr, const char *value)
-{
- IDProperty *group=(IDProperty*)ptr->id.data;
- IDProperty *idprop;
- IDPropertyTemplate val = {0};
- val.str= (char *)value;
- idprop = IDP_New(IDP_STRING, val, "name");
- IDP_ReplaceInGroup(group, idprop);
-}
-
#else
static void rna_def_ID_properties(BlenderRNA *brna)
@@ -357,7 +323,6 @@ static void rna_def_ID_properties(BlenderRNA *brna)
RNA_def_property_flag(prop, PROP_EXPORT|PROP_IDPROPERTY);
//RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_ui_text(prop, "Name", "Unique name used in the code and scripting.");
- RNA_def_property_string_funcs(prop, "rna_IDPropertyGroup_name_get", "rna_IDPropertyGroup_name_length", "rna_IDPropertyGroup_name_set");
RNA_def_struct_name_property(srna, prop);
}