This commit is contained in:
Thomas Fussell 2015-11-03 08:50:36 -05:00
parent a2919dfed8
commit 500303b303

View File

@ -320,6 +320,11 @@ xml_document worksheet_serializer::write_worksheet() const
for (auto column = sheet_.get_lowest_column(); column <= sheet_.get_highest_column(); column++)
{
if(!sheet_.has_column_properties(column))
{
continue;
}
const auto &props = sheet_.get_column_properties(column);
auto col_node = cols_node.add_child("col");