From 37e73aa368d7f3cd855fab0812673b484ee4f4e9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 16 Apr 2013 05:59:48 +0000 Subject: code cleanup: use BKE naming conventions for functions in BKE_editmesh.h and BKE_editmesh_bvh.h --- source/blender/editors/space_info/info_stats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_info') diff --git a/source/blender/editors/space_info/info_stats.c b/source/blender/editors/space_info/info_stats.c index 9ec05159627..98c9c8d15fe 100644 --- a/source/blender/editors/space_info/info_stats.c +++ b/source/blender/editors/space_info/info_stats.c @@ -138,7 +138,7 @@ static void stats_object(Object *ob, int sel, int totob, SceneStats *stats) static void stats_object_edit(Object *obedit, SceneStats *stats) { if (obedit->type == OB_MESH) { - BMEditMesh *em = BMEdit_FromObject(obedit); + BMEditMesh *em = BKE_editmesh_from_object(obedit); stats->totvert = em->bm->totvert; stats->totvertsel = em->bm->totvertsel; -- cgit v1.2.3