MCPcopy Create free account
hub / github.com/Simsys/qhexedit2 / dataChanged

Method dataChanged

src/chunks.cpp:161–171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

159}
160
161bool Chunks::dataChanged(qint64 pos)
162{
163 foreach (Chunk chunk, _chunks)
164 {
165 if (pos >= chunk.absPos && pos < (chunk.absPos + chunk.dataChanged.size()))
166 {
167 return bool(chunk.dataChanged.at(pos - chunk.absPos));
168 }
169 }
170 return false;
171}
172
173
174// ***************************************** Search API

Callers 2

markedAreaMethod · 0.45
redoMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected