1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 09:55:29 +02:00

setDirty() needs to set the dirty flag (before it was just setting to false)

This commit is contained in:
David McKnight 2006-06-12 13:06:51 +00:00
parent 4ef69b9510
commit d3c8213b63

View file

@ -3319,7 +3319,10 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
public void setDirty(boolean flag)
{
_isDirty = flag;
if (_isDirty != flag)
{
_isDirty = flag;
}
}
public boolean commit()