From: Andreas Putzo <andreas@putzo.net>
Subject: the icons have been removed from the JAR file because they are
 already provided by the openstreetmap-map-icons-* packages.
 Point josm to the correct directory so that the icons are found.
Forwarded: not-needed

---
 src/org/openstreetmap/josm/gui/mappaint/MapPaintStyles.java |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

--- josm.orig/src/org/openstreetmap/josm/gui/mappaint/MapPaintStyles.java
+++ josm/src/org/openstreetmap/josm/gui/mappaint/MapPaintStyles.java
@@ -64,8 +64,10 @@ public class MapPaintStyles {
         {
             LinkedList<String> f = new LinkedList<String>(iconDirs);
             /* don't prefix icon path, as it should be generic */
-            f.add("resource://images/styles/standard/");
-            f.add("resource://images/styles/");
+            f.add("/usr/share/icons/openstreetmap/classic.small");
+            f.add("/usr/share/icons/openstreetmap/square.small");
+            f.add("/usr/share/icons/openstreetmap/classic.big");
+            f.add("/usr/share/icons/openstreetmap/square.big");
             iconDirs = f;
         }
 
