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

[192019] Added the missing setFlags() override, without which many of the views didn't work after the refactoring.

This commit is contained in:
Pawel Piech 2008-01-24 04:17:17 +00:00
parent e6f90cea7a
commit 5dd23d3028

View file

@ -111,10 +111,16 @@ public class VMDelta extends ModelDelta {
return fFlags;
}
public void addFlags(int flags) {
fFlags |= flags;
/**
* Sets this delta's flags.
*
* @param flags
*/
@Override
public void setFlags(int flags) {
fFlags = flags;
}
public void setChildCount(int count) {
fChildCount = count;
}