Skip to content

Commit

Permalink
Fix JENKINS-15707
Browse files Browse the repository at this point in the history
  • Loading branch information
gboissinot committed Nov 22, 2012
1 parent 723e4f6 commit cb2aac7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
Expand Up @@ -12,7 +12,7 @@ public class CppcheckConfigGraph implements Serializable {

private int xSize = DEFAULT_CHART_WIDTH;
private int ySize = DEFAULT_CHART_HEIGHT;
private boolean displayAllErrors;
private boolean displayAllErrors = true;
private boolean displayErrorSeverity;
private boolean displayWarningSeverity;
private boolean displayStyleSeverity;
Expand Down
13 changes: 6 additions & 7 deletions src/main/resources/util/thresholds.jelly
Expand Up @@ -137,8 +137,7 @@
<tr>
<td>
<f:checkbox name="${id}.config.configGraph.displayAllErrors"
checked="${config.configGraph.displayAllErrors}" id="configGraph.displayAllErrors"
default="${true}"/>
checked="${config.configGraph.displayAllErrors}" id="configGraph.displayAllErrors"/>
<st:nbsp/>
<label for="configGraph.displayAllErrors">${%Display All errors}</label>
<st:nbsp/>
Expand All @@ -147,7 +146,7 @@
<td>
<f:checkbox name="${id}.config.configGraph.displayErrorSeverity"
checked="${config.configGraph.displayErrorSeverity}"
id="configGraph.displayErrorSeverity" default="${true}"/>
id="configGraph.displayErrorSeverity"/>
<st:nbsp/>
<label for="configGraph.displayErrorSeverity">${%Display errors}</label>
<st:nbsp/>
Expand All @@ -156,7 +155,7 @@
<td>
<f:checkbox name="${id}.config.configGraph.displayWarningSeverity"
checked="${config.configGraph.displayWarningSeverity}"
id="configGrah.displayWarningSeverity" default="${true}"/>
id="configGrah.displayWarningSeverity"/>
<st:nbsp/>
<label for="configGraph.displayWarningSeverity">${%Display warnings}</label>
<st:nbsp/>
Expand All @@ -165,7 +164,7 @@
<td>
<f:checkbox name="${id}.config.configGraph.displayStyleSeverity"
checked="${config.configGraph.displayStyleSeverity}"
id="configGraph.displayStyleSeverity" default="${true}"/>
id="configGraph.displayStyleSeverity"/>
<st:nbsp/>
<label for="configGraph.displayStyleSeverity">${%Display styles}</label>
<st:nbsp/>
Expand All @@ -174,7 +173,7 @@
<td>
<f:checkbox name="${id}.config.configGraph.displayPerformanceSeverity"
checked="${config.configGraph.displayPerformanceSeverity}"
id="configGraph.displayPerformanceSeverity" default="${true}"/>
id="configGraph.displayPerformanceSeverity"/>
<st:nbsp/>
<label for="configGraph.displayPerformanceSeverity">${%Display performances}</label>
<st:nbsp/>
Expand All @@ -183,7 +182,7 @@
<td>
<f:checkbox name="${id}.config.configGraph.displayInformationSeverity"
checked="${config.configGraph.displayInformationSeverity}"
id="configGraph.displayInformationSeverity" default="${true}"/>
id="configGraph.displayInformationSeverity"/>
<st:nbsp/>
<label for="configGraph.displayInformationSeverity">${%Display information}</label>
<st:nbsp/>
Expand Down

0 comments on commit cb2aac7

Please sign in to comment.