+ // wxLB_SORT style). Note the evil trick: the pointers share the
+ // same location, hence we use m_strings when we don't care if the
+ // array is sorted or not, m_stringsSorted when we do
+ union
+ {
+ wxArrayString* m_strings;
+ wxSortedArrayString* m_stringsSorted;
+ };