Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/StructureSelectionDialog.cs =================================================================== diff -u -r7b3f00698f1c53c6464df710234f7b4b716e9bd3 -rfd6db3bae09296e4da11ac9fb9e5dde9b31bc178 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/StructureSelectionDialog.cs (.../StructureSelectionDialog.cs) (revision 7b3f00698f1c53c6464df710234f7b4b716e9bd3) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/StructureSelectionDialog.cs (.../StructureSelectionDialog.cs) (revision fd6db3bae09296e4da11ac9fb9e5dde9b31bc178) @@ -27,6 +27,7 @@ using Ringtoets.Common.Forms.Views; using Ringtoets.HeightStructures.Data; using Ringtoets.HeightStructures.Forms.Properties; +using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources; namespace Ringtoets.HeightStructures.Forms { @@ -51,7 +52,7 @@ } Text = Resources.StructureSelectionDialog_Select_Structures; - InitializeDataGridView(Resources.Structure_DisplayName); + InitializeDataGridView(RingtoetsCommonFormsResources.Structure_DisplayName); SetDataSource(structures.Select(structure => new SelectableRow(structure, structure.Name)).ToArray()); }