tmf: update icon for views project element
authorBernd Hufmann <Bernd.Hufmann@ericsson.com>
Tue, 3 May 2016 17:08:35 +0000 (13:08 -0400)
committerBernd Hufmann <bernd.hufmann@ericsson.com>
Mon, 9 May 2016 19:15:24 +0000 (15:15 -0400)
Change-Id: I66a01867c6ddef95d7db4b6b9f452273bf85b59c
Signed-off-by: Bernd Hufmann <Bernd.Hufmann@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/72210
Reviewed-by: Hudson CI
Reviewed-by: Alexandre Montplaisir <alexmonthy@efficios.com>
Tested-by: Alexandre Montplaisir <alexmonthy@efficios.com>
tmf/org.eclipse.tracecompass.tmf.ui/icons/obj16/analysisprovider_obj.gif [new file with mode: 0644]
tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/project/model/TmfProjectModelIcons.java

diff --git a/tmf/org.eclipse.tracecompass.tmf.ui/icons/obj16/analysisprovider_obj.gif b/tmf/org.eclipse.tracecompass.tmf.ui/icons/obj16/analysisprovider_obj.gif
new file mode 100644 (file)
index 0000000..4c34f99
Binary files /dev/null and b/tmf/org.eclipse.tracecompass.tmf.ui/icons/obj16/analysisprovider_obj.gif differ
index 4c1332f5e6f2f6119df8a833539b4fa88c44f7d4..7e2506543285075bfc989a062e19569d415d0dbd 100644 (file)
@@ -53,6 +53,7 @@ final class TmfProjectModelIcons {
     private static final String ONDEMAND_ANALYSES_ICON_FILE = "icons/obj16/debugt_obj.gif"; //$NON-NLS-1$
     private static final String REPORTS_ICON_FILE = "icons/obj16/arraypartition_obj.gif"; //$NON-NLS-1$
     private static final String DEFAULT_REPORT_ICON_FILE = "icons/etool16/copy_edit.gif"; //$NON-NLS-1$
+    private static final String VIEWS_ICON_FILE = "icons/obj16/analysisprovider_obj.gif"; //$NON-NLS-1$
 
     // ------------------------------------------------------------------------
     // Initialization
@@ -63,7 +64,6 @@ final class TmfProjectModelIcons {
         Bundle bundle = Activator.getDefault().getBundle();
 
         FOLDER_ICON = checkNotNull(sharedImages.getImage(ISharedImages.IMG_OBJ_FOLDER));
-        VIEWS_ICON = checkNotNull(sharedImages.getImage(ISharedImages.IMG_OBJ_ELEMENT));
         ONDEMAND_ANALYSES_ICON = checkNotNull(loadIcon(bundle, ONDEMAND_ANALYSES_ICON_FILE));
         REPORTS_ICON = checkNotNull(loadIcon(bundle, REPORTS_ICON_FILE));
 
@@ -72,6 +72,7 @@ final class TmfProjectModelIcons {
         DEFAULT_ANALYSIS_ICON = checkNotNull(loadIcon(bundle, ANALYSIS_ICON_FILE));
         DEFAULT_VIEW_ICON = checkNotNull(loadIcon(bundle, VIEW_ICON_FILE));
         DEFAULT_REPORT_ICON = checkNotNull(loadIcon(bundle, DEFAULT_REPORT_ICON_FILE));
+        VIEWS_ICON = checkNotNull(loadIcon(bundle, VIEWS_ICON_FILE));
     }
 
     public static @Nullable Image loadIcon(Bundle bundle, String url) {
This page took 0.027056 seconds and 5 git commands to generate.