From 6fc4d23d8ef12f88fa6563103bd2121fc6f6a9f2 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Thu, 11 Oct 2018 07:54:55 +0200 Subject: [PATCH] Rename --- ApplicationCode/CommandFileInterface/RicfExportProperty.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ApplicationCode/CommandFileInterface/RicfExportProperty.cpp b/ApplicationCode/CommandFileInterface/RicfExportProperty.cpp index b25519ce8b..713e79a2f4 100644 --- a/ApplicationCode/CommandFileInterface/RicfExportProperty.cpp +++ b/ApplicationCode/CommandFileInterface/RicfExportProperty.cpp @@ -52,7 +52,7 @@ RicfExportProperty::RicfExportProperty() RICF_InitField(&m_type, "type", caf::AppEnum(RiaDefines::DYNAMIC_NATIVE), "Property type", "", "", ""); RICF_InitField(&m_eclipseKeyword, "eclipseKeyword", QString(), "Eclipse Keyword", "", "", ""); RICF_InitField(&m_undefinedValue, "undefinedValue", 0.0, "Undefined Value", "", "", ""); - RICF_InitField(&m_path, "exportFile", QString(), "Export File", "", "", ""); + RICF_InitField(&m_exportFileName, "exportFile", QString(), "Export FileName", "", "", ""); // clang-format on } @@ -103,7 +103,7 @@ void RicfExportProperty::execute() return; } - QString filePath = m_path; + QString filePath = m_exportFileName; if (filePath.isNull()) { QDir propertiesDir(RicfCommandFileExecutor::instance()->getExportPath(RicfCommandFileExecutor::PROPERTIES));