1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix for 102178: [Scanner Discovery] Default properties wrong for per-file scanner info profile.

This commit is contained in:
Vladimir Hirsl 2005-07-08 13:13:12 +00:00
parent 1e2b239bc3
commit 095e5fa132

View file

@ -496,7 +496,7 @@ public class ScannerConfigInfoFactory2 {
private void loadDefaults(String profileId) { private void loadDefaults(String profileId) {
ProfileOptions po = new ProfileOptions(); ProfileOptions po = new ProfileOptions();
po.buildOutputFileActionEnabled = false; po.buildOutputFileActionEnabled = false;
po.buildOutputParserEnabled = false; po.buildOutputParserEnabled = true;
ScannerConfigProfile configuredProfile = ScannerConfigProfileManager.getInstance(). ScannerConfigProfile configuredProfile = ScannerConfigProfileManager.getInstance().
getSCProfileConfiguration(profileId); getSCProfileConfiguration(profileId);