Ignore:
Timestamp:
2009-09-08T23:45:45+02:00 (15 years ago)
Author:
guggis
Message:

Updating to JOSM r2082

Location:
applications/editors/josm/plugins/openvisible
Files:
3 edited

Legend:

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

    r16587 r17536  
    2626                <attribute name="Plugin-Dependencies" value="jgrapht-jdk1.5"/>
    2727                <attribute name="Plugin-Description" value="Allows opening gpx/osm files that intersect the currently visible screen area"/>
    28                 <attribute name="Plugin-Mainversion" value="1813"/>
     28                <attribute name="Plugin-Mainversion" value="2082"/>
    2929                <attribute name="Plugin-Stage" value="50"/>
    3030                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
  • applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisibleAction.java

    r16587 r17536  
    3030import org.openstreetmap.josm.io.GpxImporter;
    3131import org.openstreetmap.josm.io.GpxReader;
     32import org.openstreetmap.josm.io.IllegalDataException;
    3233import org.openstreetmap.josm.io.OsmImporter;
    3334import org.openstreetmap.josm.io.OsmReader;
    3435import org.openstreetmap.josm.tools.Shortcut;
    3536import org.xml.sax.SAXException;
     37
     38import at.dallermassl.josm.plugin.openvisible.OsmGpxBounds;
    3639
    3740/**
     
    9497            } catch (SAXException e1) {
    9598                e1.printStackTrace();
     99            } catch(IllegalDataException e1) {
     100                e1.printStackTrace();
    96101            }
    97102        }
     
    99104    }
    100105
    101     private void openAsData(File file) throws SAXException, IOException, FileNotFoundException {
     106    private void openAsData(File file) throws SAXException, IOException, FileNotFoundException, IllegalDataException {
    102107        String fn = file.getName();
    103108        if (new OsmImporter().acceptFile(file)) {
  • applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisiblePlugin.java

    r14120 r17536  
    77import org.openstreetmap.josm.gui.MainMenu;
    88import org.openstreetmap.josm.plugins.Plugin;
    9 import org.openstreetmap.josm.actions.JosmAction;
    109
    1110/**
Note: See TracChangeset for help on using the changeset viewer.