Add rename case to summary and grid cases (#9204)

* #9203 Summary Case : Add rename to right-click menu
* Janitor: Move ID and description to private fields
* Eclipse Case: Add rename to right-click menu
* Rename feature
This commit is contained in:
Magne Sjaastad
2022-08-17 22:12:23 -07:00
committed by GitHub
parent 597a3d1f97
commit c8f642d83a
38 changed files with 331 additions and 71 deletions

View File

@@ -165,7 +165,7 @@ RimEclipseCase* RiaSocketServer::findReservoir( int caseId )
for ( size_t i = 0; i < cases.size(); i++ )
{
if ( cases[i]->caseId == currCaseId )
if ( cases[i]->caseId() == currCaseId )
{
return dynamic_cast<RimEclipseCase*>( cases[i] );
}