Spreadsheet: Fix copy of empty but used cell

This commit is contained in:
Chris Hennes
2021-11-03 14:31:11 -05:00
parent bdd600ba6e
commit da4ff7589f

View File

@@ -351,7 +351,7 @@ void PropertySheet::copyCells(Base::Writer& writer, const std::vector<Range>& ra
writer.incInd();
do {
auto cell = getValue(*range);
if (cell) {
if (cell && cell->isUsed()) {
cell->save(writer);
}
else {