]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/m_list.cpp
Bug fix in GetLabelFromText
[wxWidgets.git] / src / html / m_list.cpp
index 4a374ced8ca858eb3b1eb466c6ea32e995bfeb0b..58425f35c2cd234e422f223f11966ce4135d5174 100644 (file)
@@ -86,7 +86,7 @@ TAG_HANDLER_BEGIN(OLULLI, "OL,UL,LI")
         wxHtmlContainerCell *c;
 
         // List Item:
-        if (tag.GetName() == "LI") {
+        if (tag.GetName() == wxT("LI")) {
             if (!tag.IsEnding()) {
                 m_WParser -> CloseContainer();
                 m_WParser -> CloseContainer();
@@ -118,7 +118,7 @@ TAG_HANDLER_BEGIN(OLULLI, "OL,UL,LI")
         else {
             int oldnum = m_Numbering;
 
-            if (tag.GetName() == "UL") m_Numbering = 0;
+            if (tag.GetName() == wxT("UL")) m_Numbering = 0;
             else m_Numbering = 1;
 
             c = m_WParser -> GetContainer();