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>2014-01-17 04:39:23 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-17 07:55:06 +0400
commit7df8452d1a7edbb920e184435d73d90f3df3e3ac (patch)
treec4e9c2937f799ff022c68929d4df56033064851c /source/blender/bmesh/operators/bmo_removedoubles.c
parent5c74ac2c2a41e70b487321fc6e1afb2625704b1c (diff)
BMesh: add bmesh delete functions that dont depend on operator flags
Diffstat (limited to 'source/blender/bmesh/operators/bmo_removedoubles.c')
-rw-r--r--source/blender/bmesh/operators/bmo_removedoubles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/bmo_removedoubles.c b/source/blender/bmesh/operators/bmo_removedoubles.c
index a771e05acfc..beabca28276 100644
--- a/source/blender/bmesh/operators/bmo_removedoubles.c
+++ b/source/blender/bmesh/operators/bmo_removedoubles.c
@@ -208,7 +208,7 @@ void bmo_weld_verts_exec(BMesh *bm, BMOperator *op)
}
}
- BMO_op_callf(bm, op->flag, "delete geom=%fvef context=%i", ELE_DEL, DEL_ONLYTAGGED);
+ BMO_mesh_delete_oflag_context(bm, ELE_DEL, DEL_ONLYTAGGED);
BLI_array_free(edges);
BLI_array_free(loops);