changed argument types (replaced long with wxCoord)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9231 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
30b7213465
commit
c0cd186f82
@ -80,7 +80,7 @@ public:
|
|||||||
|
|
||||||
//# Information on region
|
//# Information on region
|
||||||
// Outer bounds of 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 ;
|
wxRect GetBox() const ;
|
||||||
|
|
||||||
// Is region empty?
|
// Is region empty?
|
||||||
|
@ -194,7 +194,7 @@ bool wxRegion::Combine(const wxRect& rect, wxRegionOp op)
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
// Outer bounds of region
|
// 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)
|
if (m_refData)
|
||||||
{
|
{
|
||||||
@ -213,7 +213,7 @@ void wxRegion::GetBox(long& x, long& y, long&w, long &h) const
|
|||||||
|
|
||||||
wxRect wxRegion::GetBox() const
|
wxRect wxRegion::GetBox() const
|
||||||
{
|
{
|
||||||
long x, y, w, h;
|
wxCoord x, y, w, h;
|
||||||
GetBox(x, y, w, h);
|
GetBox(x, y, w, h);
|
||||||
return wxRect(x, y, w, h);
|
return wxRect(x, y, w, h);
|
||||||
}
|
}
|
||||||
|
@ -194,7 +194,7 @@ bool wxRegion::Combine(const wxRect& rect, wxRegionOp op)
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
// Outer bounds of region
|
// 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)
|
if (m_refData)
|
||||||
{
|
{
|
||||||
@ -213,7 +213,7 @@ void wxRegion::GetBox(long& x, long& y, long&w, long &h) const
|
|||||||
|
|
||||||
wxRect wxRegion::GetBox() const
|
wxRect wxRegion::GetBox() const
|
||||||
{
|
{
|
||||||
long x, y, w, h;
|
wxCoord x, y, w, h;
|
||||||
GetBox(x, y, w, h);
|
GetBox(x, y, w, h);
|
||||||
return wxRect(x, y, w, h);
|
return wxRect(x, y, w, h);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user