mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#8893 Rename quantity name -> vector name
This commit is contained in:
@@ -707,10 +707,10 @@ time_t RimAbstractCorrelationPlot::timeDiff( time_t lhs, time_t rhs )
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString RimAbstractCorrelationPlot::selectedQuantitiesText()
|
||||
QString RimAbstractCorrelationPlot::selectedVectorNamesText()
|
||||
{
|
||||
QString vectorNames;
|
||||
for ( const std::string& quantityName : getOrCreateSelectedCurveDefAnalyser()->m_quantityNames )
|
||||
for ( const std::string& quantityName : getOrCreateSelectedCurveDefAnalyser()->m_vectorNames )
|
||||
{
|
||||
vectorNames += QString::fromStdString( quantityName ) + ", ";
|
||||
}
|
||||
@@ -758,7 +758,7 @@ void RimAbstractCorrelationPlot::appendDataSourceFields( QString uiConfigName, c
|
||||
{
|
||||
caf::PdmUiGroup* curveDataGroup = uiOrdering.addNewGroup( "Summary Vector" );
|
||||
|
||||
m_selectedVarsUiField = selectedQuantitiesText();
|
||||
m_selectedVarsUiField = selectedVectorNamesText();
|
||||
|
||||
curveDataGroup->add( &m_selectedVarsUiField );
|
||||
curveDataGroup->add( &m_pushButtonSelectSummaryAddress, { false, 1, 0 } );
|
||||
|
||||
@@ -118,7 +118,7 @@ protected:
|
||||
|
||||
static time_t timeDiff( time_t lhs, time_t rhs );
|
||||
|
||||
QString selectedQuantitiesText();
|
||||
QString selectedVectorNamesText();
|
||||
QString completeAddressText();
|
||||
|
||||
void initAfterRead() final;
|
||||
|
||||
@@ -366,7 +366,7 @@ void RimCorrelationMatrixPlot::onLoadDataAndUpdate()
|
||||
{
|
||||
updateMdiWindowVisibility();
|
||||
|
||||
m_selectedVarsUiField = selectedQuantitiesText();
|
||||
m_selectedVarsUiField = selectedVectorNamesText();
|
||||
|
||||
if ( m_plotWidget )
|
||||
{
|
||||
|
||||
@@ -175,7 +175,7 @@ void RimCorrelationPlot::onLoadDataAndUpdate()
|
||||
{
|
||||
updateMdiWindowVisibility();
|
||||
|
||||
m_selectedVarsUiField = selectedQuantitiesText();
|
||||
m_selectedVarsUiField = selectedVectorNamesText();
|
||||
|
||||
if ( m_plotWidget && m_analyserOfSelectedCurveDefs )
|
||||
{
|
||||
|
||||
@@ -162,7 +162,7 @@ void RimParameterResultCrossPlot::onLoadDataAndUpdate()
|
||||
{
|
||||
updateMdiWindowVisibility();
|
||||
|
||||
m_selectedVarsUiField = selectedQuantitiesText();
|
||||
m_selectedVarsUiField = selectedVectorNamesText();
|
||||
|
||||
if ( m_plotWidget && m_analyserOfSelectedCurveDefs )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user