Changeset 29661 in osm for applications/editors/josm/plugins/czechaddress
- Timestamp:
- 2013-06-16T13:52:13+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/czechaddress
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/czechaddress
- Property svn:ignore
-
old new 2 2 .log.xsl.swp 3 3 .git 4 bin
-
- Property svn:ignore
-
applications/editors/josm/plugins/czechaddress/.classpath
r19621 r29661 3 3 <classpathentry excluding="src/" including="images/**" kind="src" path=""/> 4 4 <classpathentry kind="src" path="src"/> 5 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J DK6"/>5 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> 6 6 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 7 7 <classpathentry kind="output" path="bin"/> -
applications/editors/josm/plugins/czechaddress/build.xml
r29435 r29661 33 33 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/CS:JOSM/Plugins/CzechAddress"/> 34 34 <attribute name="Plugin-Icon" value="images/preferences/czech_flag.png"/> 35 <attribute name="Plugin-Mainversion" value=" 4980"/>35 <attribute name="Plugin-Mainversion" value="6010"/> 36 36 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 37 37 </manifest> -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/LocationSelector.java
r26299 r29661 92 92 for (OsmPrimitive op : dataSet.allPrimitives()) { 93 93 if (op instanceof Node) { 94 ((Node) op). visit(visitor);94 ((Node) op).accept(visitor); 95 95 } else if (op instanceof Way) { 96 ((Way) op). visit(visitor);96 ((Way) op).accept(visitor); 97 97 } 98 98 } -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/proposal/ExtractAddressIntoNodeProposal.java
r16750 r29661 55 55 56 56 BoundingXYVisitor visitor = new BoundingXYVisitor(); 57 way. visit(visitor);57 way.accept(visitor); 58 58 59 59 Node addrNode = new Node(visitor.getBounds().getCenter());
Note:
See TracChangeset
for help on using the changeset viewer.