| 35 | } |
| 36 | |
| 37 | void HexWidget::prependData(const QByteArray &ba) { |
| 38 | m_data.prepend(ba); |
| 39 | m_modified.prepend(QByteArray(ba.size(), 0)); |
| 40 | adjust(); |
| 41 | } |
| 42 | |
| 43 | void HexWidget::appendData(const QByteArray &ba) { |
| 44 | m_data.append(ba); |
nothing calls this directly
no outgoing calls
no test coverage detected