projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixes #12220
[wxWidgets.git]
/
src
/
gtk
/
region.cpp
diff --git
a/src/gtk/region.cpp
b/src/gtk/region.cpp
index e58d23498df1f8236ce900112c3faf6aa460dbdf..2073c240461f5ee210affad11768de0b997a0cb9 100644
(file)
--- a/
src/gtk/region.cpp
+++ b/
src/gtk/region.cpp
@@
-90,7
+90,7
@@
wxRegion::wxRegion( GdkRegion *region )
M_REGIONDATA->m_region = gdk_region_copy( region );
}
M_REGIONDATA->m_region = gdk_region_copy( region );
}
-wxRegion::wxRegion( size_t n, const wxPoint *points,
+wxRegion::wxRegion( size_t n, const wxPoint *points,
wxPolygonFillMode fillStyle )
{
GdkPoint *gdkpoints = new GdkPoint[n];
wxPolygonFillMode fillStyle )
{
GdkPoint *gdkpoints = new GdkPoint[n];
@@
-179,7
+179,7
@@
bool wxRegion::DoUnionWithRect(const wxRect& r)
bool wxRegion::DoUnionWithRegion( const wxRegion& region )
{
bool wxRegion::DoUnionWithRegion( const wxRegion& region )
{
- wxCHECK_MSG( region.Ok(), false,
_
T("invalid region") );
+ wxCHECK_MSG( region.Ok(), false,
wx
T("invalid region") );
if (!m_refData)
{
if (!m_refData)
{
@@
-198,7
+198,7
@@
bool wxRegion::DoUnionWithRegion( const wxRegion& region )
bool wxRegion::DoIntersect( const wxRegion& region )
{
bool wxRegion::DoIntersect( const wxRegion& region )
{
- wxCHECK_MSG( region.Ok(), false,
_
T("invalid region") );
+ wxCHECK_MSG( region.Ok(), false,
wx
T("invalid region") );
if (!m_refData)
{
if (!m_refData)
{
@@
-215,7
+215,7
@@
bool wxRegion::DoIntersect( const wxRegion& region )
bool wxRegion::DoSubtract( const wxRegion& region )
{
bool wxRegion::DoSubtract( const wxRegion& region )
{
- wxCHECK_MSG( region.Ok(), false,
_
T("invalid region") );
+ wxCHECK_MSG( region.Ok(), false,
wx
T("invalid region") );
if (!m_refData)
{
if (!m_refData)
{
@@
-232,7
+232,7
@@
bool wxRegion::DoSubtract( const wxRegion& region )
bool wxRegion::DoXor( const wxRegion& region )
{
bool wxRegion::DoXor( const wxRegion& region )
{
- wxCHECK_MSG( region.Ok(), false,
_
T("invalid region") );
+ wxCHECK_MSG( region.Ok(), false,
wx
T("invalid region") );
if (!m_refData)
{
if (!m_refData)
{
@@
-422,28
+422,28
@@
wxRegionIterator wxRegionIterator::operator ++ (int)
wxCoord wxRegionIterator::GetX() const
{
wxCoord wxRegionIterator::GetX() const
{
- wxCHECK_MSG( HaveRects(), 0,
_
T("invalid wxRegionIterator") );
+ wxCHECK_MSG( HaveRects(), 0,
wx
T("invalid wxRegionIterator") );
return m_rects[m_current].x;
}
wxCoord wxRegionIterator::GetY() const
{
return m_rects[m_current].x;
}
wxCoord wxRegionIterator::GetY() const
{
- wxCHECK_MSG( HaveRects(), 0,
_
T("invalid wxRegionIterator") );
+ wxCHECK_MSG( HaveRects(), 0,
wx
T("invalid wxRegionIterator") );
return m_rects[m_current].y;
}
wxCoord wxRegionIterator::GetW() const
{
return m_rects[m_current].y;
}
wxCoord wxRegionIterator::GetW() const
{
- wxCHECK_MSG( HaveRects(), 0,
_
T("invalid wxRegionIterator") );
+ wxCHECK_MSG( HaveRects(), 0,
wx
T("invalid wxRegionIterator") );
return m_rects[m_current].width;
}
wxCoord wxRegionIterator::GetH() const
{
return m_rects[m_current].width;
}
wxCoord wxRegionIterator::GetH() const
{
- wxCHECK_MSG( HaveRects(), 0,
_
T("invalid wxRegionIterator") );
+ wxCHECK_MSG( HaveRects(), 0,
wx
T("invalid wxRegionIterator") );
return m_rects[m_current].height;
}
return m_rects[m_current].height;
}