]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/m_tables.cpp
corrected mac src due to new api changes
[wxWidgets.git] / src / html / m_tables.cpp
index e6505e6898e8e53405a03ba079269d0688016ad1..7f2f90ff8b97c9140aec8e435f5db1c434b58e23 100644 (file)
@@ -118,7 +118,8 @@ wxHtmlTableCell::wxHtmlTableCell(wxHtmlContainerCell *parent, const wxHtmlTag& t
  : wxHtmlContainerCell(parent)
 {
     m_PixelScale = pixel_scale;
-    m_HasBorders = (tag.GetParam(wxT("BORDER")) != wxT("0"));
+    m_HasBorders = 
+            (tag.HasParam(wxT("BORDER")) && tag.GetParam(wxT("BORDER")) != wxT("0"));
     m_ColsInfo = NULL;
     m_NumCols = m_NumRows = 0;
     m_CellInfo = NULL;
@@ -495,7 +496,7 @@ TAG_HANDLER_BEGIN(TABLE, "TABLE,TR,TD,TH")
         }
 
 
-        else if (m_Table && !tag.IsEnding())
+        else if (m_Table)
         {
             // new row in table
             if (tag.GetName() == wxT("TR"))