]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gdicmn.h
Changed GetSize to DoGetSize so virtual GetSize works right.
[wxWidgets.git] / include / wx / gdicmn.h
index a94d0ee2284d16a1ed855f17467f8ceeed68571e..32569e0a49a166b0b0a997a4c3ce65f87ffb7a6e 100644 (file)
@@ -258,13 +258,14 @@ public:
     long GetBottom() const { return y + height; }
     long GetRight()  const { return x + width; }
 
-    bool Inside(int, int) const;
 
     bool operator==(const wxRect& rect) const;
     bool operator!=(const wxRect& rect) const { return !(*this == rect); }
 
+    bool Inside(int cx, int cy) const;
     wxRect operator + (const wxRect& rect) const;
     const wxRect& operator += (const wxRect& rect);
+    
 public:
     long x, y, width, height;
 };