]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/m_dflist.cpp
OS/2 fixes
[wxWidgets.git] / src / html / m_dflist.cpp
index 8deb90d5583a300d121996a75ec320c1534cfa5e..3625e1adfb801ab61bbc57535d086cc54cfe17ad 100644 (file)
@@ -15,7 +15,7 @@
 
 
 #include "wx/defs.h"
-#if wxUSE_HTML
+#if wxUSE_HTML && wxUSE_STREAMS
 
 #ifdef __BORDLANDC__
 #pragma hdrstop
@@ -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();