Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/wizards/filter/RangeFilterWizardPage.java')
-rw-r--r--systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/wizards/filter/RangeFilterWizardPage.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/wizards/filter/RangeFilterWizardPage.java b/systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/wizards/filter/RangeFilterWizardPage.java
index 2728d34ae5..fe659f5a9f 100644
--- a/systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/wizards/filter/RangeFilterWizardPage.java
+++ b/systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/wizards/filter/RangeFilterWizardPage.java
@@ -62,7 +62,7 @@ public class RangeFilterWizardPage extends FilterWizardPage {
cboColumn.add(wizard.series[i]);
}
- new Label(cmpFilterOpts, SWT.NONE); //Spacer
+ new Label(cmpFilterOpts, SWT.NONE); //Spacer
//Low
Label lblLow = new Label(cmpFilterOpts, SWT.NONE);
@@ -78,7 +78,7 @@ public class RangeFilterWizardPage extends FilterWizardPage {
txtHigh.addModifyListener(modifyListener);
txtHigh.addKeyListener(numberKeyListener);
- new Label(cmpFilterOpts, SWT.NONE); //Spacer
+ new Label(cmpFilterOpts, SWT.NONE); //Spacer
//Style
radInside = new Button(cmpFilterOpts, SWT.RADIO);
@@ -93,7 +93,7 @@ public class RangeFilterWizardPage extends FilterWizardPage {
chkInclusive.setText(Localization.getString("RangeFilterWizardPage.Inclusive")); //$NON-NLS-1$
chkInclusive.addSelectionListener(selectionListener);
- new Label(cmpFilterOpts, SWT.NONE); //Spacer
+ new Label(cmpFilterOpts, SWT.NONE); //Spacer
cboColumn.select(0);
createFilter();

Back to the top