From 938bafd72ad43b1d69b2669e74a11cb7880d52d3 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 24 Sep 2002 09:29:31 +0000 Subject: [PATCH] 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 --- src/msw/region.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/region.cpp b/src/msw/region.cpp index ce34b66919..4da2054b10 100644 --- a/src/msw/region.cpp +++ b/src/msw/region.cpp @@ -354,7 +354,7 @@ WXHRGN wxRegion::GetHRGN() const void wxRegionIterator::Init() { m_current = - m_numRects = NULL; + m_numRects = 0; m_rects = NULL; }