- long GetX() const;
- long GetY() const;
- long GetW() const;
- long GetWidth() const { return GetW(); }
- long GetH() const;
- long GetHeight() const { return GetH(); }
- wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
+ wxCoord GetX(void) const;
+ wxCoord GetY(void) const;
+ wxCoord GetW(void) const;
+ wxCoord GetWidth(void) const { return GetW(); }
+ wxCoord GetH(void) const;
+ wxCoord GetHeight(void) const { return GetH(); }
+ wxRect GetRect(void) const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }