Stop defining wxArrayStringBase in STL build

It seems to be completely unnecessary, just use wxBaseArray<wxString>
directly.

Also remove some very old mention of wxArrayStringBase from ifacecheck
which is surely not needed any longer now (and probably wasn't since
quite some time already).

No real changes.
This commit is contained in:
Vadim Zeitlin 2023-04-08 20:17:15 +02:00
parent 208d751e9c
commit ae2e0f41b5
2 changed files with 4 additions and 7 deletions

View file

@ -79,7 +79,6 @@ void wxType::SetTypeFromString(const wxString& t)
m_strType.Replace(" ,", ",");
// ADHOC-FIX
m_strType.Replace("_wxArraywxArrayStringBase", "wxString");
m_strType.Replace("ExitCode", "void*"); // used in wxThread stuff
m_strType = m_strType.Strip(wxString::both);