Refactor: Rename method name.

This commit is contained in:
Kristian Bendiksen
2024-05-27 14:48:28 +02:00
parent 6e1289507f
commit 74ba0c8b8c
13 changed files with 27 additions and 27 deletions

View File

@@ -117,7 +117,7 @@ std::vector<std::pair<double, double>> RimWellLogCsvFile::findMdAndChannelValues
std::vector<RimWellLogCsvFile*> wellLogFiles = wellPath.descendantsIncludingThisOfType<RimWellLogCsvFile>();
for ( RimWellLogCsvFile* wellLogFile : wellLogFiles )
{
RigWellLogCsvFile* fileData = wellLogFile->wellLogFileData();
RigWellLogCsvFile* fileData = wellLogFile->wellLogData();
if ( fileData )
{
std::vector<double> channelValues = fileData->values( channelName );
@@ -144,7 +144,7 @@ std::vector<std::pair<double, double>> RimWellLogCsvFile::findMdAndChannelValues
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RigWellLogCsvFile* RimWellLogCsvFile::wellLogFileData()
RigWellLogCsvFile* RimWellLogCsvFile::wellLogData()
{
return m_wellLogDataFile.p();
}