Set integers to 0, not NULL to remove warning.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17366 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-09-24 09:29:31 +00:00
parent d0c7b7d2b7
commit 938bafd72a

View File

@@ -354,7 +354,7 @@ WXHRGN wxRegion::GetHRGN() const
void wxRegionIterator::Init()
{
m_current =
m_numRects = NULL;
m_numRects = 0;
m_rects = NULL;
}