mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-16 21:45:22 +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,8 +111,14 @@ public class VMDelta extends ModelDelta {
|
||||||
return fFlags;
|
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) {
|
public void setChildCount(int count) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue