X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ac7d3dd1578d298a301638b7ef862f1e308321d0..9d5507f7a2701395e1d5c121bd877bb9066ee6ea:/src/gtk/region.cpp?ds=sidebyside diff --git a/src/gtk/region.cpp b/src/gtk/region.cpp index 33ee658dbd..964ae16316 100644 --- a/src/gtk/region.cpp +++ b/src/gtk/region.cpp @@ -465,7 +465,7 @@ wxRegionIterator& wxRegionIterator::operator=(const wxRegionIterator& ri) if ( m_numRects ) { m_rects = new wxRect[m_numRects]; - for ( long n = 0; n < m_numRects; n++ ) + for ( unsigned int n = 0; n < m_numRects; n++ ) m_rects[n] = ri.m_rects[n]; } else