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>2013-07-25 11:00:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-07-25 11:00:07 +0400
commita15e9ca495df03bdbe84b37b033ba02dbf2089cb (patch)
tree20dd5d08b5b8c611a1e06c497a6a5ade43b66223 /source/blender/editors/mesh/mesh_intern.h
parent32700316600aad17ed5ae2620ed42d239e41e443 (diff)
triangulate and beauty fill also needed changes to selection handling after recent changes.
Diffstat (limited to 'source/blender/editors/mesh/mesh_intern.h')
-rw-r--r--source/blender/editors/mesh/mesh_intern.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h
index 69f471670ed..66079e37b91 100644
--- a/source/blender/editors/mesh/mesh_intern.h
+++ b/source/blender/editors/mesh/mesh_intern.h
@@ -59,7 +59,8 @@ struct LinkNode;
/* Calls a bmesh op, reporting errors to the user, etc */
bool EDBM_op_callf(struct BMEditMesh *em, struct wmOperator *op, const char *fmt, ...);
bool EDBM_op_call_and_selectf(struct BMEditMesh *em, struct wmOperator *op,
- const char *selectslot, const char *fmt, ...);
+ const char *select_slot, const bool select_replace,
+ const char *fmt, ...);
/* Same as above, but doesn't report errors.*/
bool EDBM_op_call_silentf(struct BMEditMesh *em, const char *fmt, ...);