[Bug #724] Fixed bug, checking if orderElementTreeController is null before using it.

FEA: ItEr63S03BugFixing
This commit is contained in:
Jacobo Aragunde Pérez 2010-11-17 11:45:09 +01:00
parent e0319e2a73
commit fbbf3c02bf

View file

@ -576,7 +576,9 @@ public class OrderCRUDController extends GenericForwardComposer {
}
private void refreshOrderWindow() {
orderElementTreeController.resetCellsMarkedAsModified();
if (orderElementTreeController != null) {
orderElementTreeController.resetCellsMarkedAsModified();
}
updateDisabilitiesOnInterface();
refreshCodeTextboxesOnly();
getVisibility().showOnly(editWindow);