Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Views/HydraulicBoundaryLocationsView.cs =================================================================== diff -u -rbe631d0fb58f6600ebd73c578dbbc8f5d53d62be -r67c8fe9ab0be6c2d723c3c5d43b3ea9f6e0de706 --- Ringtoets/Common/src/Ringtoets.Common.Forms/Views/HydraulicBoundaryLocationsView.cs (.../HydraulicBoundaryLocationsView.cs) (revision be631d0fb58f6600ebd73c578dbbc8f5d53d62be) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/Views/HydraulicBoundaryLocationsView.cs (.../HydraulicBoundaryLocationsView.cs) (revision 67c8fe9ab0be6c2d723c3c5d43b3ea9f6e0de706) @@ -72,7 +72,7 @@ AssessmentSection = assessmentSection; hydraulicBoundaryLocationsObserver = new Observer(UpdateDataGridViewDataSource); - hydraulicBoundaryLocationObserver = new RecursiveObserver, HydraulicBoundaryLocation>(HandleHydraulicBoundaryLocationUpdate, list => list); + hydraulicBoundaryLocationObserver = new RecursiveObserver, HydraulicBoundaryLocation>(HandleHydraulicBoundaryLocationCalculationUpdate, list => list); this.locations = locations; GetCalculationFunc = getCalculationFunc; Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Views/LocationsView.cs =================================================================== diff -u -r61ec7f61542fbcb75392332755c5770ecea8d3a5 -r67c8fe9ab0be6c2d723c3c5d43b3ea9f6e0de706 --- Ringtoets/Common/src/Ringtoets.Common.Forms/Views/LocationsView.cs (.../LocationsView.cs) (revision 61ec7f61542fbcb75392332755c5770ecea8d3a5) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/Views/LocationsView.cs (.../LocationsView.cs) (revision 67c8fe9ab0be6c2d723c3c5d43b3ea9f6e0de706) @@ -33,9 +33,9 @@ namespace Ringtoets.Common.Forms.Views { /// - /// Base view for selecting locations and starting calculation for said objects. + /// Base view for selecting and performing hydraulic boundary location calculations. /// - /// The type of the location object. + /// The type of the calculation objects. public abstract partial class LocationsView : UserControl, ISelectionProvider, IView where T : class { private const int calculateColumnIndex = 0; @@ -79,7 +79,7 @@ suspendAllEvents = false; UpdateCalculateForSelectedButton(); - ProvideLocationSelection(); + ProvideCalculationSelection(); } /// @@ -99,7 +99,7 @@ protected abstract object CreateSelectedItemFromCurrentRow(); /// - /// Sets the datasource on the . + /// Sets the data source on the . /// protected abstract void SetDataSource(); @@ -160,10 +160,10 @@ } /// - /// Handles the update of a hydraulic boundary location by refreshing the data grid view + /// 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 HandleHydraulicBoundaryLocationUpdate() + protected void HandleHydraulicBoundaryLocationCalculationUpdate() { suspendAllEvents = true; dataGridViewControl.RefreshDataGridView(); @@ -187,7 +187,7 @@ { if (illustrationPointsControl.Selection == null && Selection is SelectedTopLevelSubMechanismIllustrationPoint) { - ProvideLocationSelection(); + ProvideCalculationSelection(); } } @@ -211,7 +211,7 @@ SelectionChanged?.Invoke(this, new EventArgs()); } - private void ProvideLocationSelection() + private void ProvideCalculationSelection() { Selection = CreateSelectedItemFromCurrentRow(); OnSelectionChanged(); @@ -230,7 +230,7 @@ illustrationPointsControl.Data = GetIllustrationPointControlItems(); suspendIllustrationPointsControlSelectionChanges = false; - ProvideLocationSelection(); + ProvideCalculationSelection(); } private void DataGridViewControlOnCellValueChanged(object sender, DataGridViewCellEventArgs e)