Index: /trunk/src/org/openstreetmap/josm/gui/mappaint/AreaElemStyle.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/mappaint/AreaElemStyle.java	(revision 5375)
+++ /trunk/src/org/openstreetmap/josm/gui/mappaint/AreaElemStyle.java	(revision 5376)
@@ -49,5 +49,5 @@
 
             fillImage.alpha = Math.min(255, Math.max(0, Integer.valueOf(Main.pref.getInteger("mappaint.fill-image-alpha", 255))));
-            Integer pAlpha = Utils.color_float2int(c.get("fill-opacity", null, float.class));
+            Integer pAlpha = Utils.color_float2int(c.get(FILL_OPACITY, null, float.class));
             if (pAlpha != null) {
                 fillImage.alpha = pAlpha;
@@ -57,5 +57,5 @@
             if (color != null) {
                 int alpha = Math.min(255, Math.max(0, Integer.valueOf(Main.pref.getInteger("mappaint.fillalpha", 50))));
-                Integer pAlpha = Utils.color_float2int(c.get("fill-opacity", null, float.class));
+                Integer pAlpha = Utils.color_float2int(c.get(FILL_OPACITY, null, float.class));
                 if (pAlpha != null) {
                     alpha = pAlpha;
Index: /trunk/src/org/openstreetmap/josm/gui/mappaint/StyleKeys.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/mappaint/StyleKeys.java	(revision 5375)
+++ /trunk/src/org/openstreetmap/josm/gui/mappaint/StyleKeys.java	(revision 5376)
@@ -11,4 +11,5 @@
     public static final String FILL_COLOR = "fill-color";
     public static final String FILL_IMAGE = "fill-image";
+    public static final String FILL_OPACITY = "fill-opacity";
     public static final String ICON_IMAGE = "icon-image";
     public static final String MODIFIER = "modifier";
Index: /trunk/styles/standard/potlatch2.mapcss
===================================================================
--- /trunk/styles/standard/potlatch2.mapcss	(revision 5375)
+++ /trunk/styles/standard/potlatch2.mapcss	(revision 5376)
@@ -373,5 +373,5 @@
 way[boundary=administrative]                { z-index: 5; color: purple; width: 2; opacity: 0.2; dashes: 24,4; z-index: 4;}
 way[boundary=administrative][waterway]      { z-index: 5; opacity: 0.8; z-index: 4; dashes: 24,4; width: 6; }
-area[landuse=cemetery]:closed						{ color: #664466; width: 2; fill-color: color: #664466; opacity: 0.2; prop_area_small_name : 1;}
+area[landuse=cemetery]:closed						{ color: #664466; width: 2; fill-color: #664466; opacity: 0.2; prop_area_small_name : 1;}
 /* Addressing. Nodes with addresses *and* match POIs should have a poi icon, so we put addressing first */
 /* Route relations */
Index: /trunk/styles_nodist/potlatch2/patched/core_landuse.css
===================================================================
--- /trunk/styles_nodist/potlatch2/patched/core_landuse.css	(revision 5375)
+++ /trunk/styles_nodist/potlatch2/patched/core_landuse.css	(revision 5376)
@@ -44,4 +44,4 @@
 way[boundary=administrative]                { z-index: 5; color: purple; width: 2; opacity: 0.2; dashes: 24,4; z-index: 4;}
 way[boundary=administrative][waterway]      { z-index: 5; opacity: 0.8; z-index: 4; dashes: 24,4; width: 6; }
-area[landuse=cemetery]:closed						{ color: #664466; width: 2; fill-color: color: #664466; opacity: 0.2; prop_area_small_name : 1;}
+area[landuse=cemetery]:closed						{ color: #664466; width: 2; fill-color: #664466; opacity: 0.2; prop_area_small_name : 1;}
 /* Addressing. Nodes with addresses *and* match POIs should have a poi icon, so we put addressing first */
Index: /trunk/styles_nodist/potlatch2/source/core_landuse.css
===================================================================
--- /trunk/styles_nodist/potlatch2/source/core_landuse.css	(revision 5375)
+++ /trunk/styles_nodist/potlatch2/source/core_landuse.css	(revision 5376)
@@ -40,4 +40,4 @@
 way[boundary=administrative]                { color: purple; width: 2; opacity: 0.2; dashes: 24,4; z-index: 4;}
 way[boundary=administrative][waterway]      { opacity: 0.8; z-index: 4; dashes: 24,4; width: 6; }
-way[landuse=cemetery]						{ color: #664466; width: 2; fill-color: color: #664466; opacity: 0.2; set .area_small_name;}
+way[landuse=cemetery]						{ color: #664466; width: 2; fill-color: #664466; opacity: 0.2; set .area_small_name;}
 /* Addressing. Nodes with addresses *and* match POIs should have a poi icon, so we put addressing first */
