Changeset 26299 in osm for applications/editors/josm/plugins/czechaddress/src
- Timestamp:
- 2011-07-10T23:22:15+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/actions/SplitAreaByEmptyWayAction.java
r24784 r26299 55 55 56 56 Collection<Way> selectedWays = Main.main.getCurrentDataSet().getSelectedWays(); 57 Collection<Way> newSelection = new LinkedList (Main.main.getCurrentDataSet().getSelectedWays());57 Collection<Way> newSelection = new LinkedList<Way>(Main.main.getCurrentDataSet().getSelectedWays()); 58 58 59 59 for (Way area : selectedWays) { -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/FactoryDialog.java
r23190 r26299 91 91 92 92 if (message == MESSAGE_LOCATION_CHANGED) { 93 DataSet. selListeners.add(this);93 DataSet.addSelectionListener(this); 94 94 95 95 streetModel.setParent(CzechAddressPlugin.getLocation()); -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/LocationSelector.java
r23190 r26299 101 101 102 102 try { 103 center = Main. proj.eastNorth2latlon(Main.map.mapView.getCenter());103 center = Main.getProjection().eastNorth2latlon(Main.map.mapView.getCenter()); 104 104 } catch (Exception e) { 105 105 System.err.println("AUTO: No bounds to determine autolocation."); -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/intelligence/SelectionMonitor.java
r15585 r26299 27 27 if (singleton == null) { 28 28 singleton = new SelectionMonitor(); 29 DataSet. selListeners.add(singleton);29 DataSet.addSelectionListener(singleton); 30 30 } 31 31 return singleton;
Note:
See TracChangeset
for help on using the changeset viewer.