* Stores just a single cell as an Undo state */
| 758 | * Stores just a single cell as an Undo state |
| 759 | */ |
| 760 | void CsvWindow::addUndoStateCell(std::string cellContent, int R, int C, std::string descr) { |
| 761 | if( undoDisabled ) |
| 762 | return; |
| 763 | CsvUndo ustate; |
| 764 | ustate.createUndoStateCell(cellContent, R, C, table->customHeaderRowShown(), descr); |
| 765 | undoList.push_back(ustate); |
| 766 | app.setUndoMenuItem(true); |
| 767 | } |
| 768 | |
| 769 | |
| 770 |
no test coverage detected