mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Remove field accessor method. Adjusted whitespace
This commit is contained in:
@@ -530,8 +530,8 @@ QString RimWellRftPlot::currentWellName() const
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RimWellRftPlot::hasPressureData(RimWellLogFile* wellLogFile)
|
||||
{
|
||||
const auto& wellLogChannels = wellLogFile->wellLogChannelNames();
|
||||
for (const auto& wellLogChannel : *wellLogChannels)
|
||||
auto wellLogChannels = wellLogFile->wellLogChannels();
|
||||
for (const auto& wellLogChannel : wellLogChannels)
|
||||
{
|
||||
if (hasPressureData(wellLogChannel)) return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user