protected void doOnce() {
int ret = JOptionPane.showConfirmDialog(null, tr.get(ID + ".question"));
if (ret != JOptionPane.OK_OPTION)
return;
int counter = new FixRelationShip(dataPool).doWork();
JOptionPane.showMessageDialog(null, tr.get(ID + ".result", counter));
}