Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/CsvExportData.cs =================================================================== diff -u -r1975 -r1982 --- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/CsvExportData.cs (.../CsvExportData.cs) (revision 1975) +++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/CsvExportData.cs (.../CsvExportData.cs) (revision 1982) @@ -109,7 +109,7 @@ private ResultEvaluation resultEvaluation = ResultEvaluation.NotEvaluated; private string notes = ""; - private StabilityKernelType selectedStabilityKernelType = StabilityKernelType.DamClassicStabilty; + private StabilityKernelType selectedStabilityKernelType = StabilityKernelType.DamClassicStability; // redesigned LOCAL surfaceline (initialized with original local surfaceline) private SurfaceLine2 redesignedSurfaceLine; // redesigned Global surfaceline in use for this result (either piping or stability) @@ -230,7 +230,7 @@ if (!String.IsNullOrEmpty(BaseFileName)) { string fileExtension = ".sti"; - if (selectedStabilityKernelType != StabilityKernelType.DamClassicStabilty) + if (selectedStabilityKernelType != StabilityKernelType.DamClassicStability) { fileExtension = ".dsx"; } @@ -2446,7 +2446,7 @@ private string GetCurrentExeForOpenCalculationFile() { var exeName = DamHelperFunctions.MStabExePath; - if (SelectedStabilityKernelType != StabilityKernelType.DamClassicStabilty) + if (SelectedStabilityKernelType != StabilityKernelType.DamClassicStability) { exeName = Path.GetDirectoryName(exeName) + "\\MStab.exe"; } @@ -2464,7 +2464,7 @@ Path.GetFileNameWithoutExtension(InputFile) + " (copy)" + Path.GetExtension(InputFile); File.Copy(InputFile, copyFile, true); var exeName = GetCurrentExeForOpenCalculationFile(); - if (SelectedStabilityKernelType == StabilityKernelType.DamClassicStabilty) + if (SelectedStabilityKernelType == StabilityKernelType.DamClassicStability) { const string stdExtension = ".std"; CopyResultFile(stdExtension); @@ -2480,7 +2480,7 @@ FileName = exeName } }; - if (SelectedStabilityKernelType == StabilityKernelType.DamClassicStabilty) + if (SelectedStabilityKernelType == StabilityKernelType.DamClassicStability) { process.StartInfo.Arguments = " \"" + copyFile + "\""; }