Merge "Issue #1760 - fix minutes on the y axis of 3 hour graph" into development

Former-commit-id: c4c8d74cad [formerly c4c8d74cad [formerly 85970efae8002eb3f1773942211bd202014fecf2]]
Former-commit-id: d68b5ac543
Former-commit-id: ed5ff858b4
This commit is contained in:
Lee Venable 2013-03-12 11:33:17 -05:00 committed by Gerrit Code Review
commit d221f217fc

View file

@ -83,6 +83,7 @@ import com.raytheon.uf.viz.stats.display.ScaleManager;
* Oct 03, 2012 728 mpduff Initial creation.
* Jan 17, 2013 1357 mpduff Added mouse listeners.
* Jan 29, 2013 1523 mpduff Fix for count units.
* Mar 12, 2013 1760 mpduff Fix for 3 hour graph x axis labels.
*
* </pre>
*
@ -480,15 +481,16 @@ public class StatsDisplayCanvas extends Canvas {
gc.drawPolyline(gridLineArray);
gc.setLineWidth(1);
}
minute += 15;
// Roll the minutes and hours, account for rolling
// to the next hour/minute
if (minute >= TimeUtil.MINUTES_PER_HOUR) {
minute = 0;
hr++;
if (hr == TimeUtil.HOURS_PER_DAY) {
hr = 0;
}
}
minute += 15;
// Roll the minutes and hours, account for rolling
// to the next hour/minute
if (minute >= TimeUtil.MINUTES_PER_HOUR) {
minute = 0;
hr++;
if (hr == TimeUtil.HOURS_PER_DAY) {
hr = 0;
}
}