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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-08-21 18:10:10 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-08-21 18:13:51 +0300
commit654fd58270ac9cfb0b0ac5f2d6605355bf76b6be (patch)
treedb43d8eaf6f718c82990c48dc6116f889af82aa3 /source/blender/makesrna/intern/rna_collection.c
parentd357e7b0653588d5fb85deec270464778a252406 (diff)
Cleanup: minor error in assert message in libOverride collection code.
Diffstat (limited to 'source/blender/makesrna/intern/rna_collection.c')
-rw-r--r--source/blender/makesrna/intern/rna_collection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_collection.c b/source/blender/makesrna/intern/rna_collection.c
index 4700df5352f..15d73aae0ae 100644
--- a/source/blender/makesrna/intern/rna_collection.c
+++ b/source/blender/makesrna/intern/rna_collection.c
@@ -234,7 +234,7 @@ static bool rna_Collection_children_override_apply(Main *bmain,
IDOverrideLibraryPropertyOperation *opop)
{
BLI_assert(opop->operation == IDOVERRIDE_LIBRARY_OP_REPLACE &&
- "Unsupported RNA override operation on collections' objects");
+ "Unsupported RNA override operation on collections' children");
UNUSED_VARS_NDEBUG(opop);
Collection *coll_dst = ptr_dst->id.data;