-// helper function: returns all array elements in a single comma-separated and
-// newline-terminated string
-static wxString AllAsString(const wxArrayString& a)
-{
- wxString s;
- const size_t count = a.size();
- for ( size_t n = 0; n < count; n++ )
- {
- s << a[n] << (n == count - 1 ? _T("\n") : _T(", "));
- }
-
- return s;
-}
-