547548549550551552553554555556557
// Resolve tag conflicts if necessary if (!dialog.isResolvedCompletely()) { dialog.setVisible(true); if (dialog.isCanceled()) { throw new UserCancelException(); } } List<Command> cmds = new LinkedList<>(); for (OsmPrimitive i : targetPrimitives) { dialog.setTargetPrimitive(i);
589590591592593594595596
"<html>" + msg + "</html>", tr("Combine confirmation"), JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, JOptionPane.YES_OPTION)) { throw new UserCancelException(); } }
634635636637638639640641