Index: Ringtoets/Common/src/Ringtoets.Common.Forms/TreeNodeInfos/RingtoetsContextMenuItemFactory.cs =================================================================== diff -u -ra15e6824491a708be9c960aaa119b79a2ee3274d -r9a63dd4cf6589ffe683d8e1eb3694afced6efc78 --- Ringtoets/Common/src/Ringtoets.Common.Forms/TreeNodeInfos/RingtoetsContextMenuItemFactory.cs (.../RingtoetsContextMenuItemFactory.cs) (revision a15e6824491a708be9c960aaa119b79a2ee3274d) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/TreeNodeInfos/RingtoetsContextMenuItemFactory.cs (.../RingtoetsContextMenuItemFactory.cs) (revision 9a63dd4cf6589ffe683d8e1eb3694afced6efc78) @@ -386,7 +386,7 @@ where TCalculationInput : ICalculationInput, IHasForeshoreProfile { TCalculationInput input = calculation.InputParameters; - bool hasForeshoreProfile = input.ForeshoreProfile != null && !input.IsForeshoreProfileParametersSynchronized; + bool hasForeshoreProfile = input.ForeshoreProfile != null && !input.IsForeshoreProfileInputSynchronized; string toolTipMessage = hasForeshoreProfile ? Resources.CreateUpdateForshoreProfileOfCalculationItem_Update_calculation_with_ForeshoreProfile_ToolTip : Resources.CreateUpdateForshoreProfileOfCalculationItem_Update_calculation_no_ForeshoreProfile_ToolTip; @@ -431,7 +431,7 @@ { ICalculation[] calculationsWithForeshoreProfileChanges = calculations.Where( c => c.InputParameters.ForeshoreProfile != null - && !c.InputParameters.IsForeshoreProfileParametersSynchronized).ToArray(); + && !c.InputParameters.IsForeshoreProfileInputSynchronized).ToArray(); bool hasForeshoreProfileChanges = calculationsWithForeshoreProfileChanges.Any();