mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-26 18:35:32 +02:00
setDirty() needs to set the dirty flag (before it was just setting to false)
This commit is contained in:
parent
4ef69b9510
commit
d3c8213b63
1 changed files with 4 additions and 1 deletions
|
@ -3318,9 +3318,12 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDirty(boolean flag)
|
public void setDirty(boolean flag)
|
||||||
|
{
|
||||||
|
if (_isDirty != flag)
|
||||||
{
|
{
|
||||||
_isDirty = flag;
|
_isDirty = flag;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public boolean commit()
|
public boolean commit()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue