From: David Elliott Date: Thu, 3 Jul 2003 17:51:08 +0000 (+0000) Subject: Provide empty stubs for constructors X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d318df4bbbd981948c27adc96d5cb3d293bbdfb5 Provide empty stubs for constructors git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/cocoa/region.h b/include/wx/cocoa/region.h index 93f94719f3..3ecf89882f 100644 --- a/include/wx/cocoa/region.h +++ b/include/wx/cocoa/region.h @@ -40,7 +40,7 @@ class WXDLLEXPORT wxRegion : public wxGDIObject { DECLARE_DYNAMIC_CLASS(wxRegion); friend class WXDLLEXPORT wxRegionIterator; public: - wxRegion(long x, long y, long w, long h); + wxRegion(wxCoord x, wxCoord y, wxCoord w, wxCoord h); wxRegion(const wxPoint& topLeft, const wxPoint& bottomRight); wxRegion(const wxRect& rect); wxRegion(); diff --git a/src/cocoa/region.cpp b/src/cocoa/region.cpp index 260565f5fe..202b1dc76b 100644 --- a/src/cocoa/region.cpp +++ b/src/cocoa/region.cpp @@ -96,6 +96,14 @@ wxRegion::wxRegion() { } +wxRegion::wxRegion(wxCoord x, wxCoord y, wxCoord w, wxCoord h) +{ +} + +wxRegion::wxRegion(const wxPoint& topLeft, const wxPoint& bottomRight) +{ +} + wxRegionIterator::wxRegionIterator() { }