* Removes the top-most undo state without applying it – used for macros as we don't know what the macro is doing in advance */
| 857 | * Removes the top-most undo state without applying it – used for macros as we don't know what the macro is doing in advance |
| 858 | */ |
| 859 | void CsvWindow::removeLastUndoState() { |
| 860 | if( hasUndoStates() ) { |
| 861 | undoList.pop_back(); |
| 862 | } |
| 863 | } |
| 864 | |
| 865 | |
| 866 | /* |
no test coverage detected