rename addlisttolist() to BLI_movelisttolist()
name was misleading because the list items were removed from the source list. (no functional changes)
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user