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:
authorAndrew Wiggin <ender79bl@gmail.com>2011-11-29 17:01:51 +0400
committerAndrew Wiggin <ender79bl@gmail.com>2011-11-29 17:01:51 +0400
commiteb46f6bf0d1da5943ddc2b7fdf1cfb04a3f3f906 (patch)
treef93ff0f7f391050f71cc3284422cce2cbca34549 /source/blender/editors/space_info
parent06ea86c0a8ce56a38547856a469cf6e6b84c0a3f (diff)
More DM func renames, this one includes renames of the function pointer members of the DerivedMesh struct
Diffstat (limited to 'source/blender/editors/space_info')
-rw-r--r--source/blender/editors/space_info/info_stats.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_info/info_stats.c b/source/blender/editors/space_info/info_stats.c
index d9418509830..38d99c084b3 100644
--- a/source/blender/editors/space_info/info_stats.c
+++ b/source/blender/editors/space_info/info_stats.c
@@ -79,7 +79,7 @@ static void stats_object(Object *ob, int sel, int totob, SceneStats *stats)
if(dm) {
totvert = dm->getNumVerts(dm);
totedge = dm->getNumEdges(dm);
- totface = dm->getNumFaces(dm);
+ totface = dm->getNumPolys(dm);
stats->totvert += totvert*totob;
stats->totedge += totedge*totob;