Changeset 29854 in osm for applications/editors/josm/plugins/walkingpapers
- Timestamp:
- 2013-08-21T03:47:16+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/walkingpapers
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/walkingpapers/build.xml
r29805 r29854 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <!--3 ** This is a template build file for a JOSM plugin.4 **5 ** Maintaining versions6 ** ====================7 ** See README.template8 **9 ** Usage10 ** =====11 ** Call "ant help" to get possible build targets.12 **13 -->14 2 <project name="walkingpapers" default="dist" basedir="."> 15 3 … … 17 5 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/> 18 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 19 <property name="plugin.main.version" value="6 097"/>7 <property name="plugin.main.version" value="6162"/> 20 8 21 9 <property name="plugin.author" value="Frederik Ram"/> -
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.