Changeset 16803 in osm


Ignore:
Timestamp:
2009-08-03T12:18:15+02:00 (15 years ago)
Author:
guggis
Message:

Updated to JOSM release 1893

Location:
applications/editors/josm/plugins/openlayers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/openlayers/build.xml

    r14358 r16803  
    3737                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    3838                <attribute name="Plugin-Description" value="Displays an OpenLayers background image" />
    39                 <attribute name="Plugin-Mainversion" value="1498"/>
     39                <attribute name="Plugin-Mainversion" value="1893"/>
    4040                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    4141            </manifest>
  • applications/editors/josm/plugins/openlayers/src/org/openstreetmap/josm/plugins/openLayers/OpenLayersLayer.java

    r15707 r16803  
    7676    public Component[] getMenuEntries() {
    7777        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)),
    8080            new JSeparator(),
    8181            // color,
     
    118118
    119119    public void propertyChange(PropertyChangeEvent evt) {
    120         if( !visible )
     120        if( !isVisible() )
    121121            return;
    122122
Note: See TracChangeset for help on using the changeset viewer.