Merge "Issue #2734 - default time range to 24 hours." into development

Former-commit-id: de102f4e94 [formerly 8e967e8e59] [formerly de102f4e94 [formerly 8e967e8e59] [formerly e204b350ee [formerly 4604b591b1f15621fcf4cd0e93143435cccfe43b]]]
Former-commit-id: e204b350ee
Former-commit-id: 404a4c3149 [formerly 9cb8925e51]
Former-commit-id: 67f6df9784
This commit is contained in:
Lee Venable 2014-02-19 12:33:46 -06:00 committed by Gerrit Code Review
commit f645277518

View file

@ -76,6 +76,7 @@ import com.raytheon.viz.ui.widgets.duallist.IUpdate;
* Feb 26, 2013 1667 mpduff Sort categories.
* Sep 27, 2013 #2419 lvenable Changed code so the dual list will
* function correctly on start up.
* Feb 19, 2014 2734 mpduff Default time range to 24 hours.
*
* </pre>
*
@ -262,7 +263,7 @@ public class StatsControlDlg extends CaveSWTDialog implements IStatsControl,
timeRangeCombo.setLayoutData(gd);
timeRangeCombo.setToolTipText("Choose a Time Range");
timeRangeCombo.setItems(this.TIME_RANGE_ITEMS);
timeRangeCombo.select(0);
timeRangeCombo.select(4); // default to 24 hrs
gd = new GridData(SWT.CENTER, SWT.DEFAULT, true, false);
gl = new GridLayout(2, false);