Changeset 1281 in josm for trunk/src/org/openstreetmap/josm/io
- Timestamp:
- 2009-01-17T19:26:41+01:00 (17 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/io
- Files:
-
- 2 edited
-
BoundingBoxDownloader.java (modified) (1 diff)
-
OsmReader.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/BoundingBoxDownloader.java
r1169 r1281 93 93 Main.pleaseWaitDlg.progress.setValue(0); 94 94 Main.pleaseWaitDlg.currentAction.setText(tr("Contacting OSM Server...")); 95 Main.pleaseWaitDlg.setIndeterminate(true); 95 96 final InputStream in = getInputStream("map?bbox="+lon1+","+lat1+","+lon2+","+lat2, Main.pleaseWaitDlg); 97 Main.pleaseWaitDlg.setIndeterminate(false); 96 98 if (in == null) 97 99 return null; -
trunk/src/org/openstreetmap/josm/io/OsmReader.java
r1279 r1281 501 501 throw new SAXException(e1); 502 502 } 503 504 Main.pleaseWaitDlg.currentAction.setText(tr("Prepare OSM data...")); 505 Main.pleaseWaitDlg.setIndeterminate(true); 503 506 504 507 System.out.println(""); … … 522 525 o.id = 0; 523 526 524 System.out.println("File loaded!"); 527 System.out.println("Data loaded!"); 528 Main.pleaseWaitDlg.setIndeterminate(false); 529 Main.pleaseWaitDlg.progress.setValue(0); 525 530 526 531 return osm;
Note:
See TracChangeset
for help on using the changeset viewer.
