Changeset 34139 in osm for applications/editors/josm
- Timestamp:
- 2018-04-08T02:18:02+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/cadastre-fr
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/build.xml
r34115 r34139 4 4 <property name="commit.message" value="Changed constructor for Plugin"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="135 59"/>6 <property name="plugin.main.version" value="13564"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/actions/upload/CheckSourceUploadHook.java
r33638 r34139 22 22 import org.openstreetmap.josm.data.osm.OsmPrimitive; 23 23 import org.openstreetmap.josm.data.osm.Way; 24 import org.openstreetmap.josm.gui. OsmPrimitivRenderer;24 import org.openstreetmap.josm.gui.PrimitiveRenderer; 25 25 import org.openstreetmap.josm.plugins.fr.cadastre.CadastrePlugin; 26 26 import org.openstreetmap.josm.tools.GBC; … … 74 74 if (!sel.isEmpty()) { 75 75 JPanel p = new JPanel(new GridBagLayout()); 76 OsmPrimitivRenderer renderer = new OsmPrimitivRenderer();76 PrimitiveRenderer renderer = new PrimitiveRenderer(); 77 77 p.add(new JLabel(tr("Add \"source=...\" to elements?")), GBC.eol()); 78 78 JTextField tf = new JTextField(CadastrePlugin.source);
Note:
See TracChangeset
for help on using the changeset viewer.