Index: Riskeer/Common/src/Riskeer.Common.Forms/Views/FailureMechanismSectionsView.cs =================================================================== diff -u -rc5219e29c90757003a649a2b39d0e18fcbad1782 -r66d828c9031968931aa1d043f7d705b33c3ebd37 --- Riskeer/Common/src/Riskeer.Common.Forms/Views/FailureMechanismSectionsView.cs (.../FailureMechanismSectionsView.cs) (revision c5219e29c90757003a649a2b39d0e18fcbad1782) +++ Riskeer/Common/src/Riskeer.Common.Forms/Views/FailureMechanismSectionsView.cs (.../FailureMechanismSectionsView.cs) (revision 66d828c9031968931aa1d043f7d705b33c3ebd37) @@ -44,10 +44,10 @@ /// Creates a new instance of . /// /// The sections to be displayed in the view. - /// The failure path the view belongs to. + /// The failure mechanism the view belongs to. /// Thrown when any input parameter is null. - public FailureMechanismSectionsView(IEnumerable sections, IFailureMechanism failurePath) - : base(failurePath) + public FailureMechanismSectionsView(IEnumerable sections, IFailureMechanism failureMechanism) + : base(failureMechanism) { if (sections == null) { @@ -71,7 +71,7 @@ failureMechanismObserver = new Observer(HandleFailureMechanismSectionsChange) { - Observable = failurePath + Observable = failureMechanism }; Sections = sections;