]> Dogcows Code - chaz/openbox/blobdiff - otk/rect.hh
add a keyboard plugin
[chaz/openbox] / otk / rect.hh
index fe98dcb59d9e45725efc2ea8c0068c7cd2c775da..f5e755ccb9ce9f6600cf029856a2a9a2a7161d4c 100644 (file)
@@ -14,13 +14,13 @@ public:
   Rect() : _p(), _s() {}
   Rect(const Point &p, const Size &s) : _p(p), _s(s) {}
   Rect(const Rect &r) : _p(r._p), _s(r._s) {}
-  Rect(int x, int y, unsigned int w, unsigned int h)
+  Rect(int x, int y, int w, int h)
     : _p(x, y), _s(w, h) {}
 
   inline int x() const { return _p.x(); }
   inline int y() const { return _p.y(); }
-  inline unsigned int width() const { return _s.width(); }
-  inline unsigned int height() const { return _s.height(); }
+  inline int width() const { return _s.width(); }
+  inline int height() const { return _s.height(); }
 
   inline int left() const { return _p.x(); }
   inline int top() const { return _p.y(); }
This page took 0.02332 seconds and 4 git commands to generate.