Spreadsheet: add a few context menu options

This commit is contained in:
Zheng, Lei
2019-12-24 10:34:50 +08:00
committed by Chris Hennes
parent 864f6d96a6
commit 49074f5af1
6 changed files with 214 additions and 30 deletions

View File

@@ -792,6 +792,12 @@ void Sheet::touchCells(Range range) {
}while(range.next());
}
void Sheet::recomputeCells(Range range) {
do {
recomputeCell(*range);
}while(range.next());
}
/**
* @brief Recompute cell at address \a p.
* @param p Address of cell.