Changeset 16803 in osm
- Timestamp:
- 2009-08-03T12:18:15+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/openlayers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openlayers/build.xml
r14358 r16803 37 37 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 38 38 <attribute name="Plugin-Description" value="Displays an OpenLayers background image" /> 39 <attribute name="Plugin-Mainversion" value="1 498"/>39 <attribute name="Plugin-Mainversion" value="1893"/> 40 40 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 41 41 </manifest> -
applications/editors/josm/plugins/openlayers/src/org/openstreetmap/josm/plugins/openLayers/OpenLayersLayer.java
r15707 r16803 76 76 public Component[] getMenuEntries() { 77 77 return new Component[] { 78 new JMenuItem( new LayerListDialog.ShowHideLayerAction(this)),79 new JMenuItem( new LayerListDialog.DeleteLayerAction(this)),78 new JMenuItem(LayerListDialog.getInstance().createShowHideLayerAction(this)), 79 new JMenuItem(LayerListDialog.getInstance().createDeleteLayerAction(this)), 80 80 new JSeparator(), 81 81 // color, … … 118 118 119 119 public void propertyChange(PropertyChangeEvent evt) { 120 if( ! visible)120 if( !isVisible() ) 121 121 return; 122 122
Note:
See TracChangeset
for help on using the changeset viewer.