fpspreadsheet: Fix incorrect "Continue" in TsSpreadOOXMLReader.ReadFrom(Stream|File)

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4242 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2015-08-03 21:12:11 +00:00
parent bfd19235c6
commit 31090f663a

View File

@ -2004,7 +2004,8 @@ begin
fn_comments := 'comments1.xml'
else
// this sheet does not have any cell comments
continue;
fn_comments := '';
//continue;
// Extract texts from the comments file found and apply to worksheet.
if fn_comments <> '' then
@ -2161,7 +2162,8 @@ begin
fn_comments := 'comments1.xml'
else
// This sheet does not have any cell comments at all
continue;
fn_comments := '';
//continue;
finally
XMLStream.Free;
end;