| 47 | } |
| 48 | |
| 49 | void TestChunks::insert(qint64 pos, char b) |
| 50 | { |
| 51 | _data.insert((int)pos, b); |
| 52 | _copy.insert((int)pos, char(0)); |
| 53 | _highlighted.insert((int)pos, 1); |
| 54 | _chunks.insert(pos, b); |
| 55 | compare(); |
| 56 | } |
| 57 | |
| 58 | void TestChunks::overwrite(qint64 pos, char b) |
| 59 | { |