mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix missing update of export well name
This commit is contained in:
@@ -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( ' ' );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user