[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51107] trunk/blender/source/blender/ editors/include/ED_mesh.h: Bugfix [#32789] (Minor) Different types used between func declaration and

Joshua Leung aligorith at gmail.com
Sat Oct 6 05:56:15 CEST 2012


Revision: 51107
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51107
Author:   aligorith
Date:     2012-10-06 03:56:09 +0000 (Sat, 06 Oct 2012)
Log Message:
-----------
Bugfix [#32789] (Minor) Different types used between func declaration and
definition (EDBM_selectmode_convert())

Cheers to Sebastian Nell (codemanx) for catching this.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/include/ED_mesh.h

Modified: trunk/blender/source/blender/editors/include/ED_mesh.h
===================================================================
--- trunk/blender/source/blender/editors/include/ED_mesh.h	2012-10-06 03:34:52 UTC (rev 51106)
+++ trunk/blender/source/blender/editors/include/ED_mesh.h	2012-10-06 03:56:09 UTC (rev 51107)
@@ -149,7 +149,7 @@
 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);
 




More information about the Bf-blender-cvs mailing list