mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Merge pull request #5966 from OPM/fix-gcc8-warning-5964
#5964 Fix "type qualifiers ignored on cast result type" warning on gc…
This commit is contained in:
commit
b20747efbe
@ -627,7 +627,7 @@ void RiuPvtPlotPanel::plotUiSelectedCurves()
|
||||
// Determine which curves (phase) to actually plot based on selection in GUI
|
||||
const int currComboIdx = m_phaseComboBox->currentIndex();
|
||||
const RigFlowDiagSolverInterface::PvtCurve::Phase phaseToPlot =
|
||||
static_cast<const RigFlowDiagSolverInterface::PvtCurve::Phase>( m_phaseComboBox->itemData( currComboIdx ).toInt() );
|
||||
static_cast<RigFlowDiagSolverInterface::PvtCurve::Phase>( m_phaseComboBox->itemData( currComboIdx ).toInt() );
|
||||
|
||||
QString phaseString = "";
|
||||
if ( phaseToPlot == RigFlowDiagSolverInterface::PvtCurve::GAS )
|
||||
|
Loading…
Reference in New Issue
Block a user