]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlpars.cpp
Bug fix in GetLabelFromText
[wxWidgets.git] / src / html / htmlpars.cpp
index 3a5d300ee6bc0eb29a243cc876f5542de8b116ae..5c07054f58301b24e2582b3e6b5bc0e53e3337cd 100644 (file)
@@ -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 != '<') {