git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51389
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxArrayString items;
wxArrayPtrVoid itemsData;
wxArrayString items;
wxArrayPtrVoid itemsData;
- items.Alloc(count);
- itemsData.Alloc(count);
+ items.Alloc(count - 1);
+ itemsData.Alloc(count - 1);
for ( unsigned i = 0; i < count; i++ )
{
if ( i != n )
for ( unsigned i = 0; i < count; i++ )
{
if ( i != n )
- void ** const data = &itemsData[0];
- if ( HasClientObjectData() )
- Append(items, wx_reinterpret_cast(wxClientData **, data));
- else
- Append(items, data);
+ if ( count > 1 )
+ {
+ void ** const data = &itemsData[0];
+ if ( HasClientObjectData() )
+ Append(items, wx_reinterpret_cast(wxClientData **, data));
+ else
+ Append(items, data);
+ }
+ //else: the control is now empty, nothing to append
}
int wxChoice::FindString( const wxString &string, bool bCase ) const
}
int wxChoice::FindString( const wxString &string, bool bCase ) const