Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/HydraulicBoundaryLocationDesignWaterLevelsView.cs =================================================================== diff -u -rbbe059ff2ae57383fc40036c7ebb6054febdd7ba -r3b5ccb7571d2fcf63cd2c18bc3b0922e0346829b --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/HydraulicBoundaryLocationDesignWaterLevelsView.cs (.../HydraulicBoundaryLocationDesignWaterLevelsView.cs) (revision bbe059ff2ae57383fc40036c7ebb6054febdd7ba) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/HydraulicBoundaryLocationDesignWaterLevelsView.cs (.../HydraulicBoundaryLocationDesignWaterLevelsView.cs) (revision 3b5ccb7571d2fcf63cd2c18bc3b0922e0346829b) @@ -122,7 +122,7 @@ { dataGridViewControl.AddCellClickHandler(DataGridViewOnCellClick); - dataGridViewControl.AddCheckBoxColumn(TypeUtils.GetMemberName(row => row.CheckedToBeCalculated), + dataGridViewControl.AddCheckBoxColumn(TypeUtils.GetMemberName(row => row.ToCalculate), Resources.HydraulicBoundaryLocationDesignWaterLevelRow_Calculate); dataGridViewControl.AddTextBoxColumn(TypeUtils.GetMemberName(row => row.Name), Resources.HydraulicBoundaryDatabase_Locations_Name_DisplayName); @@ -191,13 +191,13 @@ private void SelectAllButton_Click(object sender, EventArgs e) { - GetHydraulicBoundaryLocationDesignWaterLevelRows().ForEachElementDo(row => row.CheckedToBeCalculated = true); + GetHydraulicBoundaryLocationDesignWaterLevelRows().ForEachElementDo(row => row.ToCalculate = true); dataGridViewControl.RefreshDataGridView(); } private void DeselectAllButton_Click(object sender, EventArgs e) { - GetHydraulicBoundaryLocationDesignWaterLevelRows().ForEachElementDo(row => row.CheckedToBeCalculated = false); + GetHydraulicBoundaryLocationDesignWaterLevelRows().ForEachElementDo(row => row.ToCalculate = false); dataGridViewControl.RefreshDataGridView(); }