gcc3 compilation fix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15248 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
cc06fe74c4
commit
ae7f6528ed
@ -829,7 +829,7 @@ bool wxSearchEngine::Scan(wxInputStream *stream)
|
||||
|
||||
if (!m_CaseSensitive)
|
||||
for (i = 0; i < lng; i++)
|
||||
tmp[size_t(i)] = (char)tolower(tmp[i]);
|
||||
tmp[(size_t)i] = (char)tolower(tmp[(size_t)i]);
|
||||
|
||||
if (m_WholeWords)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user