From 0da967a8313bad4a9dbcca9b5c760bda32b7981f Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 11 Nov 2002 11:33:32 +0000 Subject: remove the redundant _size property in OBScreen, and set the geometry root property properly. add otk::Point::setPoint --- otk/point.hh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'otk') diff --git a/otk/point.hh b/otk/point.hh index 2c6d334c..edccbe1a 100644 --- a/otk/point.hh +++ b/otk/point.hh @@ -31,6 +31,9 @@ public: void setY(int x) { _x = x; } //! Returns the y value int y() const { return _x; } + + //! Changes the x and y values + void setPoint(int x, int y) { _x = x; _y = y; } }; } -- cgit v1.2.3