From ae7f6528ed6086845c3a7853bc6939705221656a Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 23 Apr 2002 22:03:22 +0000 Subject: [PATCH] gcc3 compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15248 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/helpdata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/html/helpdata.cpp b/src/html/helpdata.cpp index c65f410ccf..7baaa8f2a9 100644 --- a/src/html/helpdata.cpp +++ b/src/html/helpdata.cpp @@ -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) { -- 2.45.2