Ignore:
Timestamp:
2011-12-15T18:35:55+01:00 (13 years ago)
Author:
stoecker
Message:

update to core changes

Location:
applications/editors/josm/plugins/osmarender
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/osmarender/build.xml

    r27019 r27243  
    3434    <property name="xslt" location="./xslt"/>
    3535    <property name="commit.message" value="Fixed #4360 - osmarender plugin does not load"/>
    36     <property name="plugin.main.version" value="4549"/>
     36    <property name="plugin.main.version" value="4645"/>
    3737    <target name="init">
    3838        <mkdir dir="${plugin.build.dir}"/>
  • applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java

    r23192 r27243  
    3535import org.openstreetmap.josm.gui.preferences.PreferenceTabbedPane;
    3636import org.openstreetmap.josm.io.OsmWriter;
     37import org.openstreetmap.josm.io.OsmWriterFactory;
    3738import org.openstreetmap.josm.plugins.Plugin;
    3839import org.openstreetmap.josm.plugins.PluginInformation;
     
    6364            try {
    6465                // write to plugin dir
    65                 OsmWriter w = new OsmWriter(new PrintWriter(new FileOutputStream(getPluginDir()+File.separator+"data.osm")), false, "0.6");
     66                OsmWriter w = OsmWriterFactory.createOsmWriter(new PrintWriter(new FileOutputStream(getPluginDir()+File.separator+"data.osm")), false, "0.6");
    6667                w.header();
    6768
Note: See TracChangeset for help on using the changeset viewer.