]> git.saurik.com Git - wxWidgets.git/commitdiff
copy array with memcpy rather than a loop
authorPaul Cornett <paulcor@bullseye.com>
Fri, 25 Nov 2011 00:59:45 +0000 (00:59 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Fri, 25 Nov 2011 00:59:45 +0000 (00:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69816 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/region.cpp

index 1f22346b7bff2b2e27750bee89d12e2d6af2fa01..dcf7ee5b2bf40a7d86215dad9ff8283a3fb31199 100644 (file)
@@ -465,12 +465,7 @@ wxRegionIterator& wxRegionIterator::operator=(const wxRegionIterator& ri)
     if ( m_numRects )
     {
         m_rects = new wxRect[m_numRects];
-        for ( int n = 0; n < m_numRects; n++ )
-            m_rects[n] = ri.m_rects[n];
-    }
-    else
-    {
-        m_rects = NULL;
+        memcpy(m_rects, ri.m_rects, m_numRects * sizeof m_rects[0]);
     }
 
     return *this;