From: Vadim Zeitlin Date: Fri, 29 Mar 2002 10:49:54 +0000 (+0000) Subject: corrected the previous warning fix so that it doesn't break the code X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4f22f506a8d1116d2ff75555f48565c4899c2d63 corrected the previous warning fix so that it doesn't break the code git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14856 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/htmltag.cpp b/src/html/htmltag.cpp index 8848884e57..9d17c87eab 100644 --- a/src/html/htmltag.cpp +++ b/src/html/htmltag.cpp @@ -78,9 +78,9 @@ wxHtmlTagsCache::wxHtmlTagsCache(const wxString& source) tg = m_CacheSize++; m_Cache[tg].Key = stpos = pos++; - size_t i; + int i; for ( i = 0; - pos < lng && i < WXSIZEOF(tagBuffer) - 1 && + pos < lng && i < (int)WXSIZEOF(tagBuffer) - 1 && src[pos] != wxT('>') && !wxIsspace(src[pos]); i++, pos++ ) {