mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
bug 251972: [project] Problem adding a symbol for ALL configurations
Patch from Mario Pierro
This commit is contained in:
parent
b32a6f12b1
commit
8984912905
1 changed files with 1 additions and 1 deletions
|
@ -635,7 +635,7 @@ public abstract class AbstractLangsListTab extends AbstractCPropertyTab {
|
|||
if (!toAllCfgs && !(curRcDes.equals(rcDes)))
|
||||
continue;
|
||||
for (ICLanguageSetting l : getLangSetting(rcDes)) {
|
||||
if (id == l.getName() || toAllLang) {
|
||||
if (toAllLang || id == l.getName() || (id != null && id.equals(l.getName()))) {
|
||||
List<ICLanguageSettingEntry> lst = l.getSettingEntriesList(getKind());
|
||||
lst.add(ent);
|
||||
l.setSettingEntries(getKind(), lst);
|
||||
|
|
Loading…
Add table
Reference in a new issue