#3920 Create Well Path: New well name not used in Completions

This commit is contained in:
Magne Sjaastad
2019-02-07 08:44:12 +01:00
parent f4e0a154ee
commit 189234c0c9
3 changed files with 18 additions and 0 deletions

View File

@@ -156,6 +156,17 @@ void RimWellPathCompletions::setWellNameForExport(const QString& name)
m_wellNameForExport = n.remove(' ');
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellPathCompletions::updateWellPathNameHasChanged(const QString& newWellPathName, const QString& previousWellPathName)
{
if (m_wellNameForExport == previousWellPathName)
{
m_wellNameForExport = newWellPathName;
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------