]> Dogcows Code - chaz/openbox/blobdiff - otk/point.hh
use the right lib
[chaz/openbox] / otk / point.hh
index edccbe1a7f44fd7d82398da3dcfb41dfffee608e..66c3b14d039e57150587b55e7258212a5a72dad4 100644 (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; }
This page took 0.025231 seconds and 4 git commands to generate.