Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Khouzam2015-05-28 12:19:52 +0000
committerMatthew Khouzam2015-05-28 14:29:16 +0000
commit043e070b57668f463d6fd2546ff8d721d6363c26 (patch)
treeb01503e1a2c9c0a515fe53a41fe63923d06918d5 /org.eclipse.tracecompass.tmf.ui/src
parent8ec1247f9dc750e68d87c58397aeec784f6e86c6 (diff)
downloadorg.eclipse.tracecompass-043e070b57668f463d6fd2546ff8d721d6363c26.tar.gz
org.eclipse.tracecompass-043e070b57668f463d6fd2546ff8d721d6363c26.tar.xz
org.eclipse.tracecompass-043e070b57668f463d6fd2546ff8d721d6363c26.zip
tmf.ui: make fields static
Change-Id: Ie87294e64410656d0afaada8705e786b7a8f5a94 Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com> Reviewed-on: https://git.eclipse.org/r/48856 Reviewed-by: Hudson CI Reviewed-by: Patrick Tasse <patrick.tasse@gmail.com> Tested-by: Patrick Tasse <patrick.tasse@gmail.com>
Diffstat (limited to 'org.eclipse.tracecompass.tmf.ui/src')
-rw-r--r--org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/histogram/Histogram.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/histogram/Histogram.java b/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/histogram/Histogram.java
index 86d05af610..210476b966 100644
--- a/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/histogram/Histogram.java
+++ b/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/histogram/Histogram.java
@@ -135,19 +135,19 @@ public abstract class Histogram implements ControlListener, PaintListener, KeyLi
/**
* No drag in progress
*/
- protected final int DRAG_NONE = 0;
+ protected static final int DRAG_NONE = 0;
/**
* Drag the selection
*/
- protected final int DRAG_SELECTION = 1;
+ protected static final int DRAG_SELECTION = 1;
/**
* Drag the time range
*/
- protected final int DRAG_RANGE = 2;
+ protected static final int DRAG_RANGE = 2;
/**
* Drag the zoom range
*/
- protected final int DRAG_ZOOM = 3;
+ protected static final int DRAG_ZOOM = 3;
// ------------------------------------------------------------------------
// Attributes

Back to the top