mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Linux: QVariant has no overload for size_t
This commit is contained in:
parent
631353cf97
commit
89cd331489
@ -1794,6 +1794,6 @@ void RiuMainWindow::slotAddWellCellsToRangeFilterAction(bool doAdd)
|
|||||||
{
|
{
|
||||||
caf::AppEnum<RimWellCollection::WellCellsRangeFilterType> rangeAddType;
|
caf::AppEnum<RimWellCollection::WellCellsRangeFilterType> rangeAddType;
|
||||||
rangeAddType = doAdd ? RimWellCollection::RANGE_ADD_INDIVIDUAL : RimWellCollection::RANGE_ADD_NONE;
|
rangeAddType = doAdd ? RimWellCollection::RANGE_ADD_INDIVIDUAL : RimWellCollection::RANGE_ADD_NONE;
|
||||||
riv->wellCollection()->wellCellsToRangeFilterMode.setValueFromUi(rangeAddType.index());
|
riv->wellCollection()->wellCellsToRangeFilterMode.setValueFromUi(static_cast<unsigned int>(rangeAddType.index()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user