mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-29 03:45: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);
|
||||
} else {
|
||||
ICLanguageSettingEntry[] del = null;
|
||||
if (! ent.getName().equals(old.getName()))
|
||||
del = new ICLanguageSettingEntry[] {old};
|
||||
if (!ent.getName().equals(old.getName()) || ent.getFlags() != old.getFlags()) {
|
||||
del = new ICLanguageSettingEntry[] { old };
|
||||
}
|
||||
changeIt(ent, del);
|
||||
}
|
||||
update();
|
||||
|
|
Loading…
Add table
Reference in a new issue