1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

check if the patch affected others.

This commit is contained in:
Alain Magloire 2002-11-29 19:26:04 +00:00
parent b3319e3db9
commit 501d00103f

View file

@ -121,7 +121,7 @@ public class MemoryBlock extends CObject implements ICDIMemoryBlock {
MemoryBlock[] blocks = mgr.listMemoryBlocks();
for (int i = 0; i < blocks.length; i++) {
if (! blocks[i].equals(this) && blocks[i].contains(addresses)) {
blocks[i].setDirty(false);
blocks[i].setDirty(true);
mgr.update(blocks[i], null);
}
}