#5620 Delta Case : Use term delta case for delta ensemble and delta summary

This commit is contained in:
Magne Sjaastad
2020-03-06 23:17:05 +01:00
parent 61ff1eab29
commit 49d74ce0e7
3 changed files with 6 additions and 6 deletions

View File

@@ -52,7 +52,7 @@ bool RicNewDerivedEnsembleFeature::showWarningDialogWithQuestion()
msgBox.setIcon( QMessageBox::Question );
msgBox.setWindowTitle( "Ensemble Matching" );
msgBox.setText( "None of the cases in the ensembles match" );
msgBox.setInformativeText( "Do you want to keep the derived ensemble?" );
msgBox.setInformativeText( "Do you want to keep the delta ensemble?" );
msgBox.setStandardButtons( QMessageBox::Yes | QMessageBox::No );
int ret = msgBox.exec();
@@ -113,6 +113,6 @@ void RicNewDerivedEnsembleFeature::onActionTriggered( bool isChecked )
//--------------------------------------------------------------------------------------------------
void RicNewDerivedEnsembleFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "New Derived Ensemble" );
actionToSetup->setText( "New Delta Ensemble" );
actionToSetup->setIcon( QIcon( ":/SummaryEnsemble16x16.png" ) );
}

View File

@@ -66,6 +66,6 @@ void RicNewDerivedSummaryFeature::onActionTriggered( bool isChecked )
//--------------------------------------------------------------------------------------------------
void RicNewDerivedSummaryFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "New Derived Summary" );
actionToSetup->setText( "New Delta Summary Case" );
// actionToSetup->setIcon( QIcon( ":/SummaryEnsemble16x16.png" ) );
}