mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-29 20:05:35 +02:00
bug 236556: Editing only the path types does not work in Paths&Symbols
Patch by Enrico Ehrich
This commit is contained in:
parent
02f13c474b
commit
cae5ae63c2
1 changed files with 3 additions and 2 deletions
|
@ -472,8 +472,9 @@ public abstract class AbstractLangsListTab extends AbstractCPropertyTab {
|
||||||
performMulti(ent, old);
|
performMulti(ent, old);
|
||||||
} else {
|
} else {
|
||||||
ICLanguageSettingEntry[] del = null;
|
ICLanguageSettingEntry[] del = null;
|
||||||
if (! ent.getName().equals(old.getName()))
|
if (!ent.getName().equals(old.getName()) || ent.getFlags() != old.getFlags()) {
|
||||||
del = new ICLanguageSettingEntry[] {old};
|
del = new ICLanguageSettingEntry[] { old };
|
||||||
|
}
|
||||||
changeIt(ent, del);
|
changeIt(ent, del);
|
||||||
}
|
}
|
||||||
update();
|
update();
|
||||||
|
|
Loading…
Add table
Reference in a new issue