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 2c6f621721
commit 127e8098e8
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.