mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
ignore sortState element in worksheet for #84
This commit is contained in:
parent
123d3df982
commit
6653568a1c
|
@ -2170,6 +2170,21 @@ void xlsx_consumer::read_worksheet(const std::string &rel_id)
|
|||
}
|
||||
}
|
||||
|
||||
parser().next();
|
||||
}
|
||||
else if (parser().qname() == xml::qname(xmlns, "sortState"))
|
||||
{
|
||||
parser().attribute_map();
|
||||
|
||||
while (parser().peek() != xml::parser::event_type::end_element ||
|
||||
parser().qname() != xml::qname(xmlns, "sortState"))
|
||||
{
|
||||
if (parser().next() == xml::parser::event_type::start_element)
|
||||
{
|
||||
parser().attribute_map();
|
||||
}
|
||||
}
|
||||
|
||||
parser().next();
|
||||
}
|
||||
}
|
||||
|
|
2
third-party/botan
vendored
2
third-party/botan
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 923a95d546df5b6d31f39b0af900d0361fb2e6a6
|
||||
Subproject commit 523b2a4ca48fa5cf04ea371aabe7167ce2e5cd13
|
Loading…
Reference in New Issue
Block a user