2010-10-26 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug309042
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / timeframe / TimeFrameView.java
index 90e3c1f4076afee3e6a044ccc3b73f71a6f11bef..ce06019329fd891a50bbbb58541e1c633006b4f0 100644 (file)
@@ -221,7 +221,8 @@ public class TimeFrameView extends TmfView {
         fSlider.setLayoutData(gridData);
 
         fSlider.addListener(SWT.Selection, new Listener() {
-               public void handleEvent(Event event) {
+               @Override
+                       public void handleEvent(Event event) {
                                int ratio = fSlider.getSelection();
                                TmfTimestamp span = fCurrentGroup.getSpan();
                                long value = span.getValue() * ratio / SLIDER_RANGE;
@@ -254,7 +255,8 @@ public class TimeFrameView extends TmfView {
         long current = fSlider.getSelection();
         if (position != current) {
                fSlider.getDisplay().asyncExec(new Runnable() {
-                       public void run() {
+                       @Override
+                               public void run() {
                                fSlider.setSelection((int) position);
                        }
                });
This page took 0.024053 seconds and 5 git commands to generate.