]> git.saurik.com Git - wxWidgets.git/commitdiff
Update m_nSize when shrinking wxArrayString (fixes #10591).
authorStefan Neis <Stefan.Neis@t-online.de>
Sat, 14 Mar 2009 18:34:46 +0000 (18:34 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Sat, 14 Mar 2009 18:34:46 +0000 (18:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59533 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/arrstr.cpp

index fa303bd756e3548e73331e76ccd5e45e1adb1edd..81252acc0b0b7801075b2b5a169610104c8b2082 100644 (file)
@@ -206,6 +206,7 @@ void wxArrayString::Shrink()
         pNew[j] = m_pItems[j];
     delete [] m_pItems;
     m_pItems = pNew;
         pNew[j] = m_pItems[j];
     delete [] m_pItems;
     m_pItems = pNew;
+    m_nSize = m_nCount
   }
 }
 
   }
 }