Fix clear_row not clearing the row properties

-- worksheet_dimensions include rows with properties
This commit is contained in:
Crzyrndm 2018-06-16 17:20:22 +12:00
parent b4e7832419
commit 4592b86746

View File

@ -763,6 +763,7 @@ void worksheet::clear_cell(const cell_reference &ref)
void worksheet::clear_row(row_t row)
{
d_->cell_map_.erase(row);
d_->row_properties_.erase(row);
// TODO: garbage collect newly unreferenced resources such as styles?
}