X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=otk%2Fpoint.hh;h=2c6d334c0347db7484a4a426c7fc1eaf88516b7f;hb=00b96c7846e715698d0f635887a3eff009deb0c8;hp=425cb2185b325633e9cdf7f6df90e17ae3f337df;hpb=8693dd95a2cdd45a5b0668ea2df1e4d20e238ee8;p=chaz%2Fopenbox diff --git a/otk/point.hh b/otk/point.hh index 425cb218..2c6d334c 100644 --- a/otk/point.hh +++ b/otk/point.hh @@ -14,7 +14,7 @@ private: //! The x value int _x; //! The y value - int _y; + int _y; public: //! Constructs a new Point with 0,0 values @@ -25,12 +25,12 @@ public: //! Changes the x value to the new value specified void setX(int x) { _x = x; } //! Returns the x value - void x() const { return _x; } + int x() const { return _x; } //! Changes the y value to the new value specified void setY(int x) { _x = x; } //! Returns the y value - void y() const { return _x; } + int y() const { return _x; } }; }