mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
[112577] - fixed bug when changing artifact from executable to static library
This commit is contained in:
parent
dc0cf7429c
commit
1ce9d53a72
1 changed files with 3 additions and 1 deletions
|
@ -622,7 +622,9 @@ public class ToolSettingsTab extends AbstractCBuildPropertyTab implements IPrefe
|
||||||
} else return;
|
} else return;
|
||||||
if (t1.length != t2.length) return; // not our case
|
if (t1.length != t2.length) return; // not our case
|
||||||
for (int i=0; i<t1.length; i++)
|
for (int i=0; i<t1.length; i++)
|
||||||
copyHoldsOptions(t1[i], t2[i], ri2);
|
if ((t1[i].getUniqueRealName()).equals(t2[i].getUniqueRealName())) {
|
||||||
|
copyHoldsOptions(t1[i], t2[i], ri2);
|
||||||
|
}
|
||||||
setDirty(false);
|
setDirty(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue