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>2012-02-07 17:54:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-07 17:54:16 +0400
commit1fd608872991cac50b686a3894ec00e33dd4645b (patch)
tree2969cb34620991f2d782bbe88b92e5a5d17c1044 /source/blender/editors/mesh/mesh_intern.h
parente511993f9c930d0a5644ac1d13247e56f60ad107 (diff)
Code Cleanup:
- use 'oflag' for operator flag arguments. - use TRUE/FALSE for some bool args
Diffstat (limited to 'source/blender/editors/mesh/mesh_intern.h')
-rw-r--r--source/blender/editors/mesh/mesh_intern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h
index c6ed64e8dae..59e9ffe54b6 100644
--- a/source/blender/editors/mesh/mesh_intern.h
+++ b/source/blender/editors/mesh/mesh_intern.h
@@ -82,10 +82,10 @@ int EDBM_CallOpfSilent(struct BMEditMesh *em, const char *fmt, ...);
execute the operator with BM_Exec_Op*/
int EDBM_InitOpf(struct BMEditMesh *em, struct BMOperator *bmop,
- struct wmOperator *op, const char *fmt, ...);
+ struct wmOperator *op, const char *fmt, ...);
/*cleans up after a bmesh operator*/
int EDBM_FinishOp(struct BMEditMesh *em, struct BMOperator *bmop,
- struct wmOperator *op, int report);
+ struct wmOperator *op, const int report);
void EDBM_clear_flag_all(struct BMEditMesh *em, const char hflag);
void EDBM_store_selection(struct BMEditMesh *em, void *data);