From 37d5156b0d5ee511689db0c77f0503beb4ae58c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Jensen?= Date: Tue, 30 Oct 2018 13:11:55 +0100 Subject: [PATCH] LGR export. Renaming --- .../Commands/ExportCommands/RicExportLgrFeature.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ApplicationCode/Commands/ExportCommands/RicExportLgrFeature.cpp b/ApplicationCode/Commands/ExportCommands/RicExportLgrFeature.cpp index 4c0fef5575..ca68341bda 100644 --- a/ApplicationCode/Commands/ExportCommands/RicExportLgrFeature.cpp +++ b/ApplicationCode/Commands/ExportCommands/RicExportLgrFeature.cpp @@ -495,7 +495,7 @@ void RicExportLgrFeature::onActionTriggered(bool isChecked) std::vector wellPaths = selectedWellPaths(); if(wellPaths.size() == 0) return; - QString dialogTitle = "LGR Export"; + QString dialogTitle = "Export LGR for Completions"; RimEclipseCase* defaultEclipseCase = nullptr; int defaultTimeStep = 0; @@ -506,7 +506,7 @@ void RicExportLgrFeature::onActionTriggered(bool isChecked) defaultTimeStep = activeView->currentTimeStep(); } - auto dialogData = openDialog("LGR Export", defaultEclipseCase, defaultTimeStep); + auto dialogData = openDialog(dialogTitle, defaultEclipseCase, defaultTimeStep); if (dialogData) { auto eclipseCase = dialogData->caseToApply(); @@ -544,7 +544,7 @@ void RicExportLgrFeature::onActionTriggered(bool isChecked) //-------------------------------------------------------------------------------------------------- void RicExportLgrFeature::setupActionLook(QAction* actionToSetup) { - actionToSetup->setText("LGR Export"); + actionToSetup->setText("Export LGR for completions"); } //--------------------------------------------------------------------------------------------------