diff --git a/ApplicationCode/Commands/CompletionExportCommands/RicWellPathExportMswCompletionsImpl.cpp b/ApplicationCode/Commands/CompletionExportCommands/RicWellPathExportMswCompletionsImpl.cpp index d3cfe1d0ca..d87fa3848d 100644 --- a/ApplicationCode/Commands/CompletionExportCommands/RicWellPathExportMswCompletionsImpl.cpp +++ b/ApplicationCode/Commands/CompletionExportCommands/RicWellPathExportMswCompletionsImpl.cpp @@ -274,7 +274,7 @@ void RicWellPathExportMswCompletionsImpl::generateWelsegsTable(RifEclipseDataTab formatter.add(startMD); formatter.addValueOrDefaultMarker(exportInfo.topWellBoreVolume(), RicMswExportInfo::defaultDoubleValue()); formatter.add(exportInfo.lengthAndDepthText()); - formatter.add(exportInfo.pressureDropText()); + formatter.add(QString("'%1'").arg(exportInfo.pressureDropText())); formatter.rowCompleted(); } diff --git a/ApplicationCode/ProjectDataModel/Completions/RimMswCompletionParameters.cpp b/ApplicationCode/ProjectDataModel/Completions/RimMswCompletionParameters.cpp index 3190a35a7f..459127a089 100644 --- a/ApplicationCode/ProjectDataModel/Completions/RimMswCompletionParameters.cpp +++ b/ApplicationCode/ProjectDataModel/Completions/RimMswCompletionParameters.cpp @@ -30,7 +30,7 @@ namespace caf { addItem(RimMswCompletionParameters::HYDROSTATIC, "H--", "Hydrostatic"); addItem(RimMswCompletionParameters::HYDROSTATIC_FRICTION, "HF-", "Hydrostatic + Friction"); addItem(RimMswCompletionParameters::HYDROSTATIC_FRICTION_ACCELERATION, "HFA", "Hydrostatic + Friction + Acceleration"); - setDefault(RimMswCompletionParameters::HYDROSTATIC); + setDefault(RimMswCompletionParameters::HYDROSTATIC_FRICTION); } template<>