]> git.saurik.com Git - wxWidgets.git/commitdiff
fixes for tables renderer: now recognizes missing border property correctly
authorVáclav Slavík <vslavik@fastmail.fm>
Tue, 10 Jul 2001 22:38:21 +0000 (22:38 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Tue, 10 Jul 2001 22:38:21 +0000 (22:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10955 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/m_tables.cpp

index e6505e6898e8e53405a03ba079269d0688016ad1..b7ff14f6cba9d75ca0e3fe7d371084ab4589500a 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;