Bug 477610 - Remove any reference to platform .gif files
Summary: Remove any reference to platform .gif files
Status: RESOLVED FIXED
Alias: None
Product: CDT
Classification: Tools
Component: cdt-core (show other bugs)
Version: 8.8.0   Edit
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: 9.0.0   Edit
Assignee: Marc Khouzam CLA
QA Contact: Doug Schaefer CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-09-16 12:25 EDT by Marc Khouzam CLA
Modified: 2015-09-17 10:35 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marc Khouzam CLA 2015-09-16 12:25:49 EDT
As per https://dev.eclipse.org/mhonarc/lists/cross-project-issues-dev/msg12325.html platform will remove their .gif files to only have .png.

We should replaced any use of platform .gif files with the corresponding .png
Comment 1 Eclipse Genie CLA 2015-09-16 12:27:15 EDT
New Gerrit change created: https://git.eclipse.org/r/56108
Comment 2 Marc Khouzam CLA 2015-09-16 12:33:48 EDT
What I did was search for the string ".gif" in all of the org.eclipse.cdt repository.  I then went through the results and looked for access to such files with a prefix pointing to the platform.

I found some images being opened from org.eclipse.ui and org.eclipse.debug.ui.
I've changed all those to use the .png instead.
Comment 4 Marc Khouzam CLA 2015-09-17 10:35:40 EDT
Committed to master

Note that I also searched for "gif (with the quote) in case we were referencing images in a pattern like
  String EXTENSION = "gif";
  String myImage = "myImage." + EXTENSION;
That didn't turn up any other results.