From 6f0b72e8e59ac30f30d23f782f61caf76971cc86 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 17 Nov 2002 16:00:12 +0000 Subject: [PATCH] big nono --- otk/point.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/otk/point.hh b/otk/point.hh index edccbe1a..66c3b14d 100644 --- a/otk/point.hh +++ b/otk/point.hh @@ -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; } -- 2.39.2