Changeset 2946 in osm for applications/editors
- Timestamp:
- 2007-05-19T23:49:52+02:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/SurveyorShowAction.java
r2936 r2946 72 72 surveyorFrame.setTitle((String)getValue(AbstractAction.NAME)); 73 73 // <FIXXME date="28.04.2007" author="cdaller"> 74 // TODO get old size/pos of frame from properties74 // TODO get old pos of frame from properties 75 75 // </FIXXME> 76 SurveyorPlugin.setSurveyorFrame(surveyorFrame); 76 77 } 78 surveyorFrame.setAlwaysOnTop(true); 77 79 surveyorFrame.setVisible(true); 78 80 … … 91 93 SurveyorComponent component= null; 92 94 try { 93 if (source.startsWith("http ") || source.startsWith("ftp") || source.startsWith("file"))95 if (source.startsWith("http://") || source.startsWith("ftp://") || source.startsWith("file:")) 94 96 in = new URL(source).openStream(); 95 97 else if (source.startsWith("resource://"))
Note:
See TracChangeset
for help on using the changeset viewer.