From b3afbcab8ff2330c1473647be330a3ffe9b11885 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 8 Feb 2014 06:07:10 +1100 Subject: ListBase API: add utility api funcs for clearing and checking empty --- source/blender/modifiers/intern/MOD_weightvgedit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/modifiers/intern/MOD_weightvgedit.c') diff --git a/source/blender/modifiers/intern/MOD_weightvgedit.c b/source/blender/modifiers/intern/MOD_weightvgedit.c index 0dfb0403c68..a9062c31e66 100644 --- a/source/blender/modifiers/intern/MOD_weightvgedit.c +++ b/source/blender/modifiers/intern/MOD_weightvgedit.c @@ -32,6 +32,7 @@ #include "BLI_ghash.h" #include "BLI_math.h" #include "BLI_string.h" +#include "BLI_listbase.h" #include "BLI_rand.h" #include "DNA_color_types.h" /* CurveMapping. */ @@ -197,7 +198,7 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *ob, DerivedMesh *der /* Check if we can just return the original mesh. * Must have verts and therefore verts assigned to vgroups to do anything useful! */ - if ((numVerts == 0) || (ob->defbase.first == NULL)) + if ((numVerts == 0) || BLI_listbase_is_empty(&ob->defbase)) return dm; /* Get vgroup idx from its name. */ -- cgit v1.2.3