Build fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34311 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2005-05-24 08:48:17 +00:00
parent 482635118a
commit 1b75cbf9b3

View File

@ -935,12 +935,12 @@ static bool is_keyword( char* cur )
return i == __gMultiLangMap.end() ? false : true;
}
static inline void get_string_between( char* start, char* end,
string* pStr )
static inline void get_string_between( wxChar* start, wxChar* end,
wxString* pStr )
{
char saved = *end;
*end = '\0';
*end = _T('\0');
*pStr = start;
*end = saved;
}