]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmltag.cpp
SetPath() is now implemented in dirdlg.cpp
[wxWidgets.git] / src / html / htmltag.cpp
index 8848884e571a69eeee2934dca2c471008e1b12ce..9d17c87eabe540d825cb8d8162ecdd6ffd61418d 100644 (file)
@@ -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++ )
             {