From 87f351de6c8d4cf2af78e36b3ceccf21bc8ec937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sat, 30 Jun 2007 11:17:35 +0000 Subject: [PATCH] STL compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47045 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/arrstr.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;