1
0
Fork 0
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:
Alena Laskavaia 2008-09-18 12:46:43 +00:00
parent dc0cf7429c
commit 1ce9d53a72

View file

@ -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);
} }