]> git.saurik.com Git - wxWidgets.git/commitdiff
Provide empty stubs for constructors
authorDavid Elliott <dfe@tgwbd.org>
Thu, 3 Jul 2003 17:51:08 +0000 (17:51 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Thu, 3 Jul 2003 17:51:08 +0000 (17:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/cocoa/region.h
src/cocoa/region.cpp

index 93f94719f391a730ae5bfac5e098e77745685f5b..3ecf89882f49a2973ec7fe8557e88264300aa847 100644 (file)
@@ -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();
index 260565f5fe8715238f7f5ad0cae42054ccc75220..202b1dc76b7b390c53756b0ef3f58387e79100c4 100644 (file)
@@ -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()
 {
 }