From dd5558f65380df571ae7eb3e80f079766368bee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20W=C5=82ostowski?= Date: Wed, 14 May 2014 13:53:02 +0200 Subject: [PATCH] geometry: GetShape()->Shape() in indexed shape containers --- include/geometry/shape_index.h | 2 +- include/geometry/shape_index_list.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/geometry/shape_index.h b/include/geometry/shape_index.h index 24b174e1fa..49b0e124f9 100644 --- a/include/geometry/shape_index.h +++ b/include/geometry/shape_index.h @@ -43,7 +43,7 @@ template static const SHAPE* shapeFunctor( T aItem ) { - return aItem->GetShape(); + return aItem->Shape(); } diff --git a/include/geometry/shape_index_list.h b/include/geometry/shape_index_list.h index 0d0e644803..194ae5ffd9 100644 --- a/include/geometry/shape_index_list.h +++ b/include/geometry/shape_index_list.h @@ -30,7 +30,7 @@ template const SHAPE* defaultShapeFunctor( const T aItem ) { - return aItem->GetShape(); + return aItem->Shape(); } template >