mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Support loading hierarchical well paths
This commit is contained in:
@@ -333,7 +333,7 @@ QList<caf::PdmOptionItemInfo>
|
||||
|
||||
// Find wells with a given measurement.
|
||||
std::set<QString> wellsWithMeasurementKind;
|
||||
for ( const auto& well : wellPathCollection->wellPaths() )
|
||||
for ( const auto& well : wellPathCollection->allWellPaths() )
|
||||
{
|
||||
if ( hasMeasurementKindForWell( well, wellPathCollection, measurements, m_measurementKind ) )
|
||||
wellsWithMeasurementKind.insert( well->name() );
|
||||
@@ -416,7 +416,7 @@ void RimWellMeasurementInView::setAllWellsSelected()
|
||||
|
||||
// Find wells with a given measurement.
|
||||
std::set<QString> wellsWithMeasurementKind;
|
||||
for ( const auto& well : wellPathCollection->wellPaths() )
|
||||
for ( const auto& well : wellPathCollection->allWellPaths() )
|
||||
{
|
||||
if ( hasMeasurementKindForWell( well, wellPathCollection, measurements, m_measurementKind ) )
|
||||
wellsWithMeasurementKind.insert( well->name() );
|
||||
|
||||
Reference in New Issue
Block a user