From 720310a8435d77575389d7eaf622f37ac8ff1711 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Wed, 15 Mar 2017 11:49:32 +0100 Subject: [PATCH] Use "Export" instead of "Save" in features --- .../EclipseCommands/RicSaveEclipseInputPropertyFeature.cpp | 2 +- .../RicSaveEclipseResultAsInputPropertyExec.cpp | 2 +- .../RicSaveEclipseResultAsInputPropertyFeature.cpp | 2 +- .../Commands/RicSnapshotViewToClipboardFeature.cpp | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseInputPropertyFeature.cpp b/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseInputPropertyFeature.cpp index 4b568087e8..e5d7865364 100644 --- a/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseInputPropertyFeature.cpp +++ b/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseInputPropertyFeature.cpp @@ -116,7 +116,7 @@ void RicSaveEclipseInputPropertyFeature::onActionTriggered(bool isChecked) //-------------------------------------------------------------------------------------------------- void RicSaveEclipseInputPropertyFeature::setupActionLook(QAction* actionToSetup) { - actionToSetup->setText("Save Property To File"); + actionToSetup->setText("Export Property To File"); } //-------------------------------------------------------------------------------------------------- diff --git a/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseResultAsInputPropertyExec.cpp b/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseResultAsInputPropertyExec.cpp index ff029b3da7..e8cb054c3f 100644 --- a/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseResultAsInputPropertyExec.cpp +++ b/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseResultAsInputPropertyExec.cpp @@ -60,7 +60,7 @@ RicSaveEclipseResultAsInputPropertyExec::~RicSaveEclipseResultAsInputPropertyExe //-------------------------------------------------------------------------------------------------- QString RicSaveEclipseResultAsInputPropertyExec::name() { - return "Save Property To File"; + return "Export Property To File"; } //-------------------------------------------------------------------------------------------------- diff --git a/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseResultAsInputPropertyFeature.cpp b/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseResultAsInputPropertyFeature.cpp index 683bd05075..31d74288a9 100644 --- a/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseResultAsInputPropertyFeature.cpp +++ b/ApplicationCode/Commands/EclipseCommands/RicSaveEclipseResultAsInputPropertyFeature.cpp @@ -61,7 +61,7 @@ void RicSaveEclipseResultAsInputPropertyFeature::onActionTriggered(bool isChecke //-------------------------------------------------------------------------------------------------- void RicSaveEclipseResultAsInputPropertyFeature::setupActionLook(QAction* actionToSetup) { - actionToSetup->setText("Save Property To File"); + actionToSetup->setText("Export Property To File"); } diff --git a/ApplicationCode/Commands/RicSnapshotViewToClipboardFeature.cpp b/ApplicationCode/Commands/RicSnapshotViewToClipboardFeature.cpp index 47e9f15a39..063aa0bf93 100644 --- a/ApplicationCode/Commands/RicSnapshotViewToClipboardFeature.cpp +++ b/ApplicationCode/Commands/RicSnapshotViewToClipboardFeature.cpp @@ -93,11 +93,11 @@ void RicSnapshotViewToFileFeature::saveSnapshotAs(const QString& fileName, RimVi { if (image.save(fileName)) { - qDebug() << "Saved snapshot image to " << fileName; + qDebug() << "Exported snapshot image to " << fileName; } else { - qDebug() << "Error when trying to save snapshot image to " << fileName; + qDebug() << "Error when trying to export snapshot image to " << fileName; } } } @@ -132,7 +132,7 @@ void RicSnapshotViewToFileFeature::onActionTriggered(bool isChecked) startPath += "/image.png"; - QString fileName = QFileDialog::getSaveFileName(NULL, tr("Save File"), startPath, tr("Image files (*.bmp *.png * *.jpg)")); + QString fileName = QFileDialog::getSaveFileName(NULL, tr("Export to File"), startPath, tr("Image files (*.bmp *.png * *.jpg)")); if (fileName.isEmpty()) { return;