Changeset 29854 in osm for applications/editors/josm/plugins/walkingpapers/src/org/openstreetmap
- Timestamp:
- 2013-08-21T03:47:16+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/walkingpapers/src/org/openstreetmap/josm/plugins/walkingpapers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/walkingpapers/src/org/openstreetmap/josm/plugins/walkingpapers/WalkingPapersAddLayerAction.java
r29778 r29854 33 33 34 34 // Grab id= from the URL if we need to, otherwise get an ID 35 String mungedWpId = this.getWalkingPapersId(wpid);35 String mungedWpId = WalkingPapersAddLayerAction.getWalkingPapersId(wpid); 36 36 37 37 if (mungedWpId == null || mungedWpId.equals("")) return; -
applications/editors/josm/plugins/walkingpapers/src/org/openstreetmap/josm/plugins/walkingpapers/WalkingPapersLayer.java
r26299 r29854 55 55 private String walkingPapersId; 56 56 57 @SuppressWarnings("serial")58 57 public WalkingPapersLayer(String id, String tile, Bounds b, int minz, int maxz) { 59 58 super(tr("Walking Papers: {0}", id)); -
applications/editors/josm/plugins/walkingpapers/src/org/openstreetmap/josm/plugins/walkingpapers/WalkingPapersPlugin.java
r29805 r29854 1 1 package org.openstreetmap.josm.plugins.walkingpapers; 2 2 3 import static org.openstreetmap.josm.gui.help.HelpUtil.ht;4 import static org.openstreetmap.josm.tools.I18n.marktr;5 6 import java.awt.event.KeyEvent;7 8 3 import javax.swing.JMenu; 9 import javax.swing.JMenuItem;10 4 11 5 import org.openstreetmap.josm.Main;
Note:
See TracChangeset
for help on using the changeset viewer.