]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlpars.cpp
Bug fix in GetLabelFromText
[wxWidgets.git] / src / html / htmlpars.cpp
index 1d9b99c7f6267dea5863b8e47fdf48724dd23bb7..5c07054f58301b24e2582b3e6b5bc0e53e3337cd 100644 (file)
@@ -12,7 +12,7 @@
 #pragma implementation
 #endif
 
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
 
 #include "wx/defs.h"
 #if wxUSE_HTML
@@ -22,7 +22,7 @@
 #endif
 
 #ifndef WXPRECOMP
-#include <wx/wx.h>
+#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 != '<') {