Changeset 5869 in josm
- Timestamp:
- 2013-04-15T19:51:56+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/OsmDataLayer.java
r5775 r5869 361 361 * 362 362 * @param from the source data set 363 * @param progressMonitor the progress monitor, can be {@code null} 363 364 */ 364 365 public void mergeFrom(final DataSet from, ProgressMonitor progressMonitor) { … … 407 408 Main.map.mapView.repaint(); 408 409 } 409 Main.map.conflictDialog.warnNumNewConflicts(numNewConflicts); 410 // warn about new conflicts 411 if (numNewConflicts > 0 && Main.map != null && Main.map.conflictDialog != null) { 412 Main.map.conflictDialog.warnNumNewConflicts(numNewConflicts); 413 } 410 414 } 411 415
Note: See TracChangeset
for help on using the changeset viewer.