X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a7a4d01bdbb5c23d8f2025072f66ca91d3657bf3..9d9b77552eeb78e0c7ee903aa265dc187651ff57:/src/html/htmlpars.cpp diff --git a/src/html/htmlpars.cpp b/src/html/htmlpars.cpp index 1d9b99c7f6..5c07054f58 100644 --- a/src/html/htmlpars.cpp +++ b/src/html/htmlpars.cpp @@ -12,7 +12,7 @@ #pragma implementation #endif -#include +#include "wx/wxprec.h" #include "wx/defs.h" #if wxUSE_HTML @@ -22,7 +22,7 @@ #endif #ifndef WXPRECOMP -#include +#include "wx/wx.h" #endif #include "wx/tokenzr.h" @@ -81,7 +81,7 @@ void wxHtmlParser::DoParsing(int begin_pos, int end_pos) i = begin_pos; while (i < end_pos) { - c = m_Source[i]; + c = m_Source[(unsigned int) i]; // continue building word: if (c != '<') {