From b0f87a17460578382cabb8447934cb045eee223a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 21 Dec 2010 14:49:34 +0000 Subject: rename addlisttolist() to BLI_movelisttolist() name was misleading because the list items were removed from the source list. (no functional changes) --- source/blender/editors/mesh/editmesh_lib.c | 2 +- source/blender/editors/mesh/editmesh_tools.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/mesh') diff --git a/source/blender/editors/mesh/editmesh_lib.c b/source/blender/editors/mesh/editmesh_lib.c index acbd9a3bb3e..e50f65256a7 100644 --- a/source/blender/editors/mesh/editmesh_lib.c +++ b/source/blender/editors/mesh/editmesh_lib.c @@ -698,7 +698,7 @@ static void check_fgons_selection(EditMesh *em) if(sel) efa->f |= SELECT; else efa->f &= ~SELECT; } - addlisttolist(&em->faces, &lbar[index]); + BLI_movelisttolist(&em->faces, &lbar[index]); } MEM_freeN(lbar); diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index aebcde9749b..b1306a5c262 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -555,7 +555,7 @@ void xsortvert_flag(bContext *C, int flag) } } - addlisttolist(&vc.em->verts, &tbase); + BLI_movelisttolist(&vc.em->verts, &tbase); MEM_freeN(sortblock); @@ -613,7 +613,7 @@ void hashvert_flag(EditMesh *em, int flag) sb++; } - addlisttolist(&em->verts, &tbase); + BLI_movelisttolist(&em->verts, &tbase); MEM_freeN(sortblock); -- cgit v1.2.3