X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/336e2d442411a3594ff8a24dda22cfe906e038c1..c2754d29034199bc158fc079f91c7bca15d40037:/src/html/m_dflist.cpp diff --git a/src/html/m_dflist.cpp b/src/html/m_dflist.cpp index 8deb90d558..fd13d8040a 100644 --- a/src/html/m_dflist.cpp +++ b/src/html/m_dflist.cpp @@ -43,7 +43,7 @@ TAG_HANDLER_BEGIN(DEFLIST, "DL,DT,DD") wxHtmlContainerCell *c; - if (tag.GetName() == "DL") { + if (tag.GetName() == wxT("DL")) { if (m_WParser -> GetContainer() -> GetFirstCell() != NULL) { m_WParser -> CloseContainer(); m_WParser -> OpenContainer(); @@ -61,7 +61,7 @@ TAG_HANDLER_BEGIN(DEFLIST, "DL,DT,DD") return TRUE; } - else if (tag.GetName() == "DT") { + else if (tag.GetName() == wxT("DT")) { if (!tag.IsEnding()) { m_WParser -> CloseContainer(); c = m_WParser -> OpenContainer();