From: Václav Slavík Date: Sat, 30 Jun 2007 11:17:35 +0000 (+0000) Subject: STL compilation fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/87f351de6c8d4cf2af78e36b3ceccf21bc8ec937 STL compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47045 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/arrstr.h b/include/wx/arrstr.h index 7c7b29290c..ac59ff6483 100644 --- a/include/wx/arrstr.h +++ b/include/wx/arrstr.h @@ -42,7 +42,8 @@ public: wxArrayString() { } wxArrayString(const wxArrayString& a) : wxArrayStringBase(a) { } - wxArrayString(size_t sz, const wxChar** a); + wxArrayString(size_t sz, const char** a); + wxArrayString(size_t sz, const wchar_t** a); wxArrayString(size_t sz, const wxString* a); int Index(const wxString& str, bool bCase = true, bool bFromEnd = false) const;