]> git.saurik.com Git - wxWidgets.git/commitdiff
changed argument types (replaced long with wxCoord)
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Tue, 30 Jan 2001 21:26:23 +0000 (21:26 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Tue, 30 Jan 2001 21:26:23 +0000 (21:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9231 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/region.h
src/mac/carbon/region.cpp
src/mac/region.cpp

index bbe826196dd735bf3be4a03cb58364f6427a2133..aa7d718d739948e04bda7ef56644d087a212e4a5 100644 (file)
@@ -80,7 +80,7 @@ public:
 
        //# Information on region
        // Outer bounds of region
-       void GetBox(long& x, long& y, long&w, long &h) const;
+       void GetBox(wxCoord& x, wxCoord& y, wxCoord&w, wxCoord &h) const;
        wxRect GetBox() const ;
 
        // Is region empty?
index afe12ce60332d74ceabf9d43c6f806b81230d09c..315b966927af0e6d304a99617f9fa65bdb14a3fd 100644 (file)
@@ -194,7 +194,7 @@ bool wxRegion::Combine(const wxRect& rect, wxRegionOp op)
 //-----------------------------------------------------------------------------
 
 // Outer bounds of region
-void wxRegion::GetBox(long& x, long& y, long&w, long &h) const
+void wxRegion::GetBox(wxCoord& x, wxCoord& y, wxCoord& w, wxCoord& h) const
 {
        if (m_refData) 
        {
@@ -213,7 +213,7 @@ void wxRegion::GetBox(long& x, long& y, long&w, long &h) const
 
 wxRect wxRegion::GetBox() const
 {
-    long x, y, w, h;
+    wxCoord x, y, w, h;
     GetBox(x, y, w, h);
     return wxRect(x, y, w, h);
 }
index afe12ce60332d74ceabf9d43c6f806b81230d09c..315b966927af0e6d304a99617f9fa65bdb14a3fd 100644 (file)
@@ -194,7 +194,7 @@ bool wxRegion::Combine(const wxRect& rect, wxRegionOp op)
 //-----------------------------------------------------------------------------
 
 // Outer bounds of region
-void wxRegion::GetBox(long& x, long& y, long&w, long &h) const
+void wxRegion::GetBox(wxCoord& x, wxCoord& y, wxCoord& w, wxCoord& h) const
 {
        if (m_refData) 
        {
@@ -213,7 +213,7 @@ void wxRegion::GetBox(long& x, long& y, long&w, long &h) const
 
 wxRect wxRegion::GetBox() const
 {
-    long x, y, w, h;
+    wxCoord x, y, w, h;
     GetBox(x, y, w, h);
     return wxRect(x, y, w, h);
 }