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>2011-01-09 18:12:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-09 18:12:08 +0300
commit00b8c9e7eaef445be425f06111c91a92edf4406b (patch)
tree81437a6af43d74a44f9c467eeb58b0c6424446d7 /source/blender/makesrna/intern/rna_access.c
parent9cb71d1159a1cd8aa110e195d42828f863cdd02a (diff)
rename BKE_assert() --> BLI_assert().
Diffstat (limited to 'source/blender/makesrna/intern/rna_access.c')
-rw-r--r--source/blender/makesrna/intern/rna_access.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index d509efbb927..bf5beb05b06 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -3348,7 +3348,7 @@ static char *rna_idp_path(PointerRNA *ptr, IDProperty *haystack, IDProperty *nee
IDProperty *iter;
int i;
- BKE_assert(haystack->type == IDP_GROUP);
+ BLI_assert(haystack->type == IDP_GROUP);
link.up= parent_link;
link.name= NULL;
@@ -3408,7 +3408,7 @@ static char *rna_path_from_ID_to_idpgroup(PointerRNA *ptr)
IDProperty *haystack;
IDProperty *needle;
- BKE_assert(ptr->id.data != NULL);
+ BLI_assert(ptr->id.data != NULL);
RNA_id_pointer_create(ptr->id.data, &id_ptr);
haystack= RNA_struct_idprops(&id_ptr, FALSE);