all repos — openbox @ 6f0b72e8e59ac30f30d23f782f61caf76971cc86

openbox fork - make it a bit more like ryudo

big nono
Dana Jansens danakj@orodu.net
commit

6f0b72e8e59ac30f30d23f782f61caf76971cc86

parent

1d897f432e54400cb2a0e1499712782b336fd728

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M otk/point.hhotk/point.hh

@@ -28,9 +28,9 @@ //! Returns the x value

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; }