This commit is contained in:
Dana Jansens 2002-11-17 16:00:12 +00:00
parent 1d897f432e
commit 6f0b72e8e5

View file

@ -28,9 +28,9 @@ public:
int x() const { return _x; }
//! Changes the y value to the new value specified
void setY(int x) { _x = x; }
void setY(int y) { _y = y; }
//! Returns the y value
int y() const { return _x; }
int y() const { return _y; }
//! Changes the x and y values
void setPoint(int x, int y) { _x = x; _y = y; }