| 58 | void setSelection(int addr); |
| 59 | void resetSelection() { m_selectStart = m_selectEnd = -1; } |
| 60 | bool isSelected() const { return m_selectStart != -1; } |
| 61 | void setSelected(char n) { overwrite(m_selectStart * 2, m_selectLen, QByteArray(m_selectLen, n)); } |
| 62 | void overwrite(int pos, char c); |
| 63 | void overwrite(int pos, int len, const QByteArray &ba); |
nothing calls this directly
no outgoing calls
no test coverage detected