From 64b56f8039ba4d50cbfd3477f097fc4d4ee83d17 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Sun, 25 Mar 2012 21:33:49 +0200 Subject: utils/rectangle: the points should be modifiable --- src/utils/rectangle.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/rectangle.hpp b/src/utils/rectangle.hpp index 016e86d3..0a7ca954 100644 --- a/src/utils/rectangle.hpp +++ b/src/utils/rectangle.hpp @@ -75,12 +75,12 @@ namespace usdx } - const Point& get_point1(void) const + Point& get_point1(void) { return point1; } - const Point& get_point2(void) const + Point& get_point2(void) { return point2; } -- cgit v1.2.3