fpspreadsheet: Fix reading of spurious cell borders of xlsx files written by PlanMaker.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6587 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-08-10 15:12:39 +00:00
parent 9a3ee0016f
commit ec8ada57a7

View File

@ -525,7 +525,7 @@ procedure TsSpreadOOXMLReader.ReadBorders(ANode: TDOMNode);
ABorderStyle.Color := scBlack;
s := GetAttrValue(ANode, 'style');
if s = '' then
if (s = '') or (s = 'none') then
exit;
if s = 'thin' then