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:
parent
4ef69b9510
commit
d3c8213b63
1 changed files with 4 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue