FPSpreadsheet: Fix reading text:span elements in chart titles.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9475 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2024-09-30 22:02:54 +00:00
parent bb303d45aa
commit 6599aeba51

View File

@ -1873,7 +1873,7 @@ begin
begin begin
nodeName := childNode.NodeName; nodeName := childNode.NodeName;
case nodeName of case nodeName of
'#text': '#text', 'text:span':
s := s + childNode.TextContent; s := s + childNode.TextContent;
'text:s': 'text:s':
s := s + ' '; s := s + ' ';