mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#6060 Fix spelling of RimPlotCurve::setVisibility.
This commit is contained in:
@@ -680,7 +680,7 @@ void RicSummaryPlotEditorUi::copyCurveAndAddToPlot( const RimSummaryCurve* curve
|
||||
|
||||
if ( forceVisible )
|
||||
{
|
||||
curveCopy->setCurveVisiblity( true );
|
||||
curveCopy->setCurveVisibility( true );
|
||||
}
|
||||
|
||||
plot->addCurveNoUpdate( curveCopy );
|
||||
@@ -704,7 +704,7 @@ void RicSummaryPlotEditorUi::copyEnsembleCurveAndAddToCurveSet( const RimSummary
|
||||
|
||||
if ( forceVisible )
|
||||
{
|
||||
curveCopy->setCurveVisiblity( true );
|
||||
curveCopy->setCurveVisibility( true );
|
||||
}
|
||||
|
||||
curveSet->addCurve( curveCopy );
|
||||
@@ -935,7 +935,7 @@ void RicSummaryPlotEditorUi::setInitialCurveVisibility( const RimSummaryPlot* ta
|
||||
auto curveDef = std::make_pair( curve->summaryCaseY(), curve->summaryAddressY() );
|
||||
if ( sourceCurveDefs.count( curveDef ) == 0 )
|
||||
{
|
||||
curve->setCurveVisiblity( false );
|
||||
curve->setCurveVisibility( false );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -340,7 +340,7 @@ void RicNewWellBoreStabilityPlotFeature::createStabilityCurvesTrack( RimWellBore
|
||||
curve->setSmoothingThreshold( 0.002 );
|
||||
if ( resultNames[i] == RiaDefines::wbsSHMkResult() )
|
||||
{
|
||||
curve->setCurveVisiblity( false );
|
||||
curve->setCurveVisibility( false );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -427,7 +427,7 @@ bool RimPlotCurve::isCurveVisible() const
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimPlotCurve::setCurveVisiblity( bool visible )
|
||||
void RimPlotCurve::setCurveVisibility( bool visible )
|
||||
{
|
||||
m_showCurve = visible;
|
||||
}
|
||||
|
||||
@@ -81,7 +81,7 @@ public:
|
||||
void resetAppearance();
|
||||
|
||||
bool isCurveVisible() const;
|
||||
void setCurveVisiblity( bool visible );
|
||||
void setCurveVisibility( bool visible );
|
||||
|
||||
void updateCurveName();
|
||||
void updateCurveNameAndUpdatePlotLegendAndTitle();
|
||||
|
||||
Reference in New Issue
Block a user