| 92 | } |
| 93 | |
| 94 | UndoStack::UndoStack(Chunks * chunks, QObject * parent) |
| 95 | : QUndoStack(parent) |
| 96 | { |
| 97 | _chunks = chunks; |
| 98 | _parent = parent; |
| 99 | this->setUndoLimit(1000); |
| 100 | } |
| 101 | |
| 102 | void UndoStack::insert(qint64 pos, char c) |
| 103 | { |
nothing calls this directly
no outgoing calls
no test coverage detected