| 26 | }; |
| 27 | |
| 28 | CharCommand::CharCommand(Chunks * chunks, CCmd cmd, qint64 charPos, char newChar, QUndoCommand *parent) |
| 29 | : QUndoCommand(parent) |
| 30 | , _chunks(chunks) |
| 31 | , _charPos(charPos) |
| 32 | , _wasChanged(false) |
| 33 | , _newChar(newChar) |
| 34 | , _oldChar('\0') |
| 35 | , _cmd(cmd) |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | bool CharCommand::mergeWith(const QUndoCommand *command) |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected