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:
parent
e6f90cea7a
commit
5dd23d3028
1 changed files with 9 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue