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
path: root/source
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2012-10-06 07:56:09 +0400
committerJoshua Leung <aligorith@gmail.com>2012-10-06 07:56:09 +0400
commit950ac472507432339ac0d4b126ac48137bf39e9c (patch)
tree756dbf407464724e1ca25ae3bc2c9d9ae2cae53c /source
parentb26ccf0aff3ab8871923ade7993b8f8d3a3f75f5 (diff)
Bugfix [#32789] (Minor) Different types used between func declaration and
definition (EDBM_selectmode_convert()) Cheers to Sebastian Nell (codemanx) for catching this.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/include/ED_mesh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h
index 028b5db6beb..093872c79f6 100644
--- a/source/blender/editors/include/ED_mesh.h
+++ b/source/blender/editors/include/ED_mesh.h
@@ -149,7 +149,7 @@ struct BMFace *EDBM_face_find_nearest(struct ViewContext *vc, int *dist);
int EDBM_select_pick(struct bContext *C, const int mval[2], short extend, short deselect, short toggle);
void EDBM_selectmode_set(struct BMEditMesh *em);
-void EDBM_selectmode_convert(struct BMEditMesh *em, short selectmode_old, const short selectmode_new);
+void EDBM_selectmode_convert(struct BMEditMesh *em, const short selectmode_old, const short selectmode_new);
void EDBM_deselect_by_material(struct BMEditMesh *em, const short index, const short select);