aboutsummaryrefslogtreecommitdiff
path: root/backends/vkeybd/polygon.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/vkeybd/polygon.h')
-rw-r--r--backends/vkeybd/polygon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/vkeybd/polygon.h b/backends/vkeybd/polygon.h
index 19a12a0409..91c8d017b2 100644
--- a/backends/vkeybd/polygon.h
+++ b/backends/vkeybd/polygon.h
@@ -46,13 +46,13 @@ struct Polygon {
}
}
- void addPoint(const Point& p) {
+ void addPoint(const Point &p) {
_points.push_back(p);
_bound.extend(Rect(p.x, p.y, p.x, p.y));
}
void addPoint(int16 x, int16 y) {
- addPoint(Point(x,y));
+ addPoint(Point(x, y));
}
uint getPointCount() {