X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fpoint.hh;h=66c3b14d039e57150587b55e7258212a5a72dad4;hb=70eb03ad50e1a71fd64c8cb1ebabbff311850553;hp=edccbe1a7f44fd7d82398da3dcfb41dfffee608e;hpb=0da967a8313bad4a9dbcca9b5c760bda32b7981f;p=chaz%2Fopenbox 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; }