- fixed theme file

git-svn-id: svn://svn.jdownloader.org/jdownloader/trunk@5929 ebf7c1c2-ba36-0410-9fe8-c592906822b4
This commit is contained in:
Greeny 2009-05-29 11:20:47 +00:00
parent ff67e65d72
commit 5117a6ba33
2 changed files with 4 additions and 3 deletions

View File

@ -44,6 +44,7 @@ gui.images.remove_all=default/remove-all
gui.images.remove_dupes=default/remove-dupes
gui.images.remove_failed=default/remove-failed
gui.images.remove_disabled=default/list-remove_disabled
gui.images.play = default/media-playback-start
gui.images.next = default/media-playback-start
gui.images.save = default/document-save
gui.images.close = default/close

View File

@ -41,9 +41,9 @@ public class JDImage {
/**
* Alle verfügbaren Bilder werden hier gespeichert
*/
public static HashMap<String, BufferedImage> BUFFERED_IMAGE_CACHE = new HashMap<String, BufferedImage>();
public static HashMap<String, ImageIcon> IMAGE_ICON_CACHE = new HashMap<String, ImageIcon>();
public static HashMap<String, Image> SCALED_IMAGE_CACHE = new HashMap<String, Image>();
private static HashMap<String, BufferedImage> BUFFERED_IMAGE_CACHE = new HashMap<String, BufferedImage>();
private static HashMap<String, ImageIcon> IMAGE_ICON_CACHE = new HashMap<String, ImageIcon>();
private static HashMap<String, Image> SCALED_IMAGE_CACHE = new HashMap<String, Image>();
public static ImageIcon iconToImage(Icon icon) {
if (icon == null) return null;