Fix missing update of export well name

This commit is contained in:
Magne Sjaastad
2022-09-08 16:14:05 +02:00
committed by GitHub
parent 5dc020ccb7
commit f3a3e04e1f
5 changed files with 25 additions and 9 deletions

View File

@@ -102,6 +102,18 @@ void RiaWellNameComparer::clearCache()
sm_matchedName.clear();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
QString RiaWellNameComparer::removeSpacesFromName( const QString& wellName )
{
// Eclipse do not support spaces in names in text files. Use this function whenever a string is used in export to
// text files for Eclipse
QString tmp = wellName;
return tmp.remove( ' ' );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------