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:
authorArystanbek Dyussenov <arystan.d@gmail.com>2009-08-19 13:52:13 +0400
committerArystanbek Dyussenov <arystan.d@gmail.com>2009-08-19 13:52:13 +0400
commit7220792f187f91a2ef3eb0c930a13674b2a8a80a (patch)
tree7a8eb394106d1b25f7a44f560e732140ca2b4d42 /source/blender/makesrna/intern/rna_object_api.c
parent7c786e28c4965fc7314d7a2a3521f41f9b562726 (diff)
Various fixes in rna_*_api.c files to remove compiler warnings.
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object_api.c b/source/blender/makesrna/intern/rna_object_api.c
index f0a42987848..3c79c1cbc21 100644
--- a/source/blender/makesrna/intern/rna_object_api.c
+++ b/source/blender/makesrna/intern/rna_object_api.c
@@ -273,7 +273,7 @@ static void rna_Object_convert_to_triface(Object *ob, bContext *C, ReportList *r
make_editMesh(sce, ob);
/* select all */
- EM_set_flag_all(me->edit_mesh, SELECT);
+ EM_select_all(me->edit_mesh);
convert_to_triface(me->edit_mesh, 0);