void name::Grow(size_t nIncrement) \
{ \
/* only do it if no more place */ \
- if( m_nCount == m_nSize ) { \
+ if( (m_nCount == m_nSize) || ((m_nSize - m_nCount) < nIncrement) ) { \
if( m_nSize == 0 ) { \
/* was empty, determine initial size */ \
size_t size = WX_ARRAY_DEFAULT_INITIAL_SIZE; \
/* add item at the end */ \
void name::Add(T lItem, size_t nInsert) \
{ \
+ if (nInsert == 0) \
+ return; \
Grow(nInsert); \
for (size_t i = 0; i < nInsert; i++) \
m_pItems[m_nCount++] = lItem; \
wxCHECK_RET( m_nCount <= m_nCount + nInsert, \
wxT("array size overflow in wxArray::Insert") ); \
\
+ if (nInsert == 0) \
+ return; \
Grow(nInsert); \
\
memmove(&m_pItems[nIndex + nInsert], &m_pItems[nIndex], \