mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
basic streaming read works now, just need to clean up the logic
This commit is contained in:
parent
6f716c6e89
commit
fdd91f817f
|
@ -282,6 +282,16 @@ cell xlsx_consumer::read_cell()
|
||||||
cell.format(target_.format(format_id));
|
cell.format(target_.format(format_id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!in_element(qn("spreadsheetml", "row")))
|
||||||
|
{
|
||||||
|
expect_end_element(qn("spreadsheetml", "row"));
|
||||||
|
|
||||||
|
if (!in_element(qn("spreadsheetml", "sheetData")))
|
||||||
|
{
|
||||||
|
expect_end_element(qn("spreadsheetml", "sheetData"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return cell;
|
return cell;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user