Ignore:
Timestamp:
2010-12-12T01:47:03+01:00 (13 years ago)
Author:
Upliner
Message:

Added imagery plugin to josm core. Imagery plugin is union of wmsplugin and slippymap plugins. It includes code by Tim Waters, Petr Dlouhý, Frederik Ramm and others. Also enables the remotecontol which was integrated in [3707].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r3707 r3715  
    221221        monitor.worked(1);
    222222
    223         if (RemoteControl.on && RemoteControl.PROP_REMOTECONTROL_ENABLED.get()) {
     223        if (RemoteControl.PROP_REMOTECONTROL_ENABLED.get()) {
    224224            RemoteControl.start();
    225225        }
     
    266266                        dialog.setContent(
    267267                                trn("JOSM found {0} unsaved osm data layer. ",
    268                                 "JOSM found {0} unsaved osm data layers. ", unsavedLayerFiles.size(), unsavedLayerFiles.size()) +
    269                                 tr("It looks like JOSM crashed last time. Do you like to restore the data?"));
     268                                        "JOSM found {0} unsaved osm data layers. ", unsavedLayerFiles.size(), unsavedLayerFiles.size()) +
     269                                        tr("It looks like JOSM crashed last time. Do you like to restore the data?"));
    270270                        dialog.setButtonIcons(new String[] {"ok", "cancel", "dialogs/remove"});
    271271                        int selection = dialog.showDialog().getValue();
     
    278278                    autosaveTask.schedule();
    279279                }
    280                
     280
    281281                main.postConstructorProcessCmdLine(args);
    282282            }
Note: See TracChangeset for help on using the changeset viewer.