Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Views/CalculationsView.cs
===================================================================
diff -u -r8cf808db7be49f9a3c28ae9f9d5dbf283d26c284 -r793a23c6d92cebd31e5e0e054ca35a02585b5cbc
--- Ringtoets/Common/src/Ringtoets.Common.Forms/Views/CalculationsView.cs (.../CalculationsView.cs) (revision 8cf808db7be49f9a3c28ae9f9d5dbf283d26c284)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/Views/CalculationsView.cs (.../CalculationsView.cs) (revision 793a23c6d92cebd31e5e0e054ca35a02585b5cbc)
@@ -142,9 +142,23 @@
}
///
+ /// Handles the update of a hydraulic boundary location calculation by refreshing the data grid view
+ /// and updating the data of the illustration points control.
+ ///
+ protected void HandleHydraulicBoundaryLocationCalculationUpdate()
+ {
+ suspendAllEvents = true;
+ dataGridViewControl.RefreshDataGridView();
+ HandlePossibleOutdatedIllustrationPointsControl();
+ suspendAllEvents = false;
+
+ HandlePossibleOutdatedIllustrationPointsSelection();
+ }
+
+ ///
/// Updates the state of the calculation button and the corresponding error provider.
///
- protected void UpdateCalculateForSelectedButton()
+ private void UpdateCalculateForSelectedButton()
{
string validationText = ValidateCalculatableObjects();
if (!string.IsNullOrEmpty(validationText))
@@ -159,20 +173,6 @@
}
}
- ///
- /// Handles the update of a hydraulic boundary location calculation by refreshing the data grid view
- /// and updating the data of the illustration points control.
- ///
- protected void HandleHydraulicBoundaryLocationCalculationUpdate()
- {
- suspendAllEvents = true;
- dataGridViewControl.RefreshDataGridView();
- HandlePossibleOutdatedIllustrationPointsControl();
- suspendAllEvents = false;
-
- HandlePossibleOutdatedIllustrationPointsSelection();
- }
-
private void HandlePossibleOutdatedIllustrationPointsControl()
{
IEnumerable illustrationPointControlItems = GetIllustrationPointControlItems();