(#541) Exporting well name as part of well info to LAS file

This commit is contained in:
Pål Hagen
2015-10-16 11:15:04 +02:00
parent 7bcbb80691
commit 3ecd6d8da7
6 changed files with 21 additions and 2 deletions
@@ -227,7 +227,7 @@ QString RimWellLogFileCurve::createCurveName()
{
QString txt;
txt += m_wellPath()->name();
txt += wellName();
txt += " : ";
txt += m_wellLogChannnelName;
@@ -256,3 +256,10 @@ QString RimWellLogFileCurve::wellLogChannelName() const
return m_wellLogChannnelName;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
QString RimWellLogFileCurve::wellName() const
{
return m_wellPath->name();
}