| Revision | 128 (tree) |
|---|---|
| Time | 2015-10-08 21:57:57 |
| Author | t_nakayama1971 |
clear warning
| @@ -1,12 +1,12 @@ | ||
| 1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | 2 | <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> |
| 3 | 3 | |
| 4 | -<!-- | |
| 5 | - This configuration file was written by the eclipse-cs plugin configuration editor | |
| 4 | +<!-- | |
| 5 | + This configuration file was written by the eclipse-cs plugin configuration editor | |
| 6 | 6 | --> |
| 7 | -<!-- | |
| 8 | - Checkstyle-Configuration: Modified Sun Checks | |
| 9 | - Description: none | |
| 7 | +<!-- | |
| 8 | + Checkstyle-Configuration: Modified Sun Checks | |
| 9 | + Description: none | |
| 10 | 10 | --> |
| 11 | 11 | <module name="Checker"> |
| 12 | 12 | <property name="severity" value="warning"/> |
| @@ -281,6 +281,7 @@ | ||
| 281 | 281 | <property name="severity" value="ignore"/> |
| 282 | 282 | <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity" value="inherit"/> |
| 283 | 283 | </module> |
| 284 | + <module name="CommentsIndentation"/> | |
| 284 | 285 | </module> |
| 285 | 286 | <module name="JavadocPackage"> |
| 286 | 287 | <property name="severity" value="ignore"/> |
| @@ -249,7 +249,7 @@ | ||
| 249 | 249 | Button button = new Button(parent, SWT.PUSH); |
| 250 | 250 | button.setText(label); |
| 251 | 251 | GridData data = new GridData(GridData.FILL_HORIZONTAL); |
| 252 | -// data.heightHint = convertVerticalDLUsToPixels(button, IDialogConstants.BUTTON_HEIGHT); | |
| 252 | + // data.heightHint = convertVerticalDLUsToPixels(button, IDialogConstants.BUTTON_HEIGHT); | |
| 253 | 253 | int widthHint = convertHorizontalDLUsToPixels(button, IDialogConstants.BUTTON_WIDTH); |
| 254 | 254 | data.widthHint = Math.max(widthHint, button.computeSize(SWT.DEFAULT, SWT.DEFAULT, true).x); |
| 255 | 255 | // data.horizontalSpan = hs; use to have multiple buttons on the same |