| 286 | } |
| 287 | |
| 288 | void HexWidget::overwrite(int addr, char c) { |
| 289 | int address = addr / 2; |
| 290 | stack_entry_t entry{addr, m_data.mid(address, 1)}; |
| 291 | m_stack.push(entry); |
| 292 | m_data[address] = c; |
| 293 | m_modified[address] = m_modified[address] + 1; |
| 294 | } |
| 295 | |
| 296 | void HexWidget::overwrite(int addr, int len, const QByteArray &ba) { |
| 297 | int address = addr / 2; |
nothing calls this directly
no outgoing calls
no test coverage detected