1
0
Fork 0
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:
David McKnight 2006-06-12 13:06:51 +00:00
parent 4ef69b9510
commit d3c8213b63

View file

@ -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()
{ {