]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/arrstr.cpp
Set svn properties on .cpp files.
[wxWidgets.git] / src / common / arrstr.cpp
index 81252acc0b0b7801075b2b5a169610104c8b2082..be461cc639ccd1a361631d4217c14e32c4520f4e 100644 (file)
@@ -206,7 +206,7 @@ void wxArrayString::Shrink()
         pNew[j] = m_pItems[j];
     delete [] m_pItems;
     m_pItems = pNew;
-    m_nSize = m_nCount
+    m_nSize = m_nCount;
   }
 }
 
@@ -345,6 +345,14 @@ wxArrayString::insert(iterator it, const_iterator first, const_iterator last)
     }
 }
 
+void wxArrayString::resize(size_type n, value_type v)
+{
+  if ( n < m_nCount )
+      m_nCount = n;
+  else if ( n > m_nCount )
+      Add(v, n - m_nCount);
+}
+
 // expand the array
 void wxArrayString::SetCount(size_t count)
 {