if (originalRelationship == null) {
String question = "Soll die Eltern-Kind-Beziehung zwischen\r\n\r\n" + p1 + "\r\nund\r\n" + p2 + "\r\n\r\n";
question += "mit dem Status \"" + mergeRelationship.getTypeText() + "\" �bernommen werden?";
int answer = SwtUtilities.askYesNoCancel(GUI.instance.shell, question);
if (answer == SWT.YES) {
RelationshipParentChild rpc = p1.addChild(p2);
rpc.setValue(Relationship.TYPE, mergeRelationship.getType());
Family.instance.setCurrentPerson(p2, 2);
Statics.mergeFamily.removeRelationship(mergeRelationship);
}
else if (answer == SWT.NO) {
Statics.mergeFamily.removeRelationship(mergeRelationship);