projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a5f9094
)
WinCE build fix: access to protected member.
author
Włodzimierz Skiba
<abx@abx.art.pl>
Wed, 27 Sep 2006 11:53:50 +0000
(11:53 +0000)
committer
Włodzimierz Skiba
<abx@abx.art.pl>
Wed, 27 Sep 2006 11:53:50 +0000
(11:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41477
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/common/rgncmn.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/common/rgncmn.cpp
b/src/common/rgncmn.cpp
index cee89a91c220c535d618d945f0adf5354bf264a8..8b6530c78d1c2a2d305ba68b8cd5fe24e8eb4873 100644
(file)
--- a/
src/common/rgncmn.cpp
+++ b/
src/common/rgncmn.cpp
@@
-38,13
+38,13
@@
bool wxRegionBase::IsEqual(const wxRegion& region) const
{
- if ( m_refData == region.
m_refData
)
+ if ( m_refData == region.
GetRefData()
)
{
// regions are identical, hence equal
return true;
}
- if ( !m_refData || !region.
m_refData
)
+ if ( !m_refData || !region.
GetRefData()
)
{
// one, but not both, of the regions is invalid
return false;