Renamed base class RimCase to RimEclipseCase

To make room for a RimCase base class that can be used as base class for
RimGeoMechCase as well.
This commit is only the class rename not the file rename.
This commit is contained in:
Jacob Støren
2015-05-15 08:40:27 +02:00
parent 750fc5182c
commit 223f8385d2
38 changed files with 164 additions and 164 deletions

View File

@@ -142,7 +142,7 @@ void RiaSocketServer::slotNewClientConnection()
//--------------------------------------------------------------------------------------------------
/// Find the requested reservoir by caseId
//--------------------------------------------------------------------------------------------------
RimCase* RiaSocketServer::findReservoir(int caseId)
RimEclipseCase* RiaSocketServer::findReservoir(int caseId)
{
int currCaseId = caseId;
if (caseId < 0)
@@ -163,7 +163,7 @@ RimCase* RiaSocketServer::findReservoir(int caseId)
RimProject* project = RiaApplication::instance()->project();
if (!project) return NULL;
std::vector<RimCase*> cases;
std::vector<RimEclipseCase*> cases;
project->allCases(cases);
for (size_t i = 0; i < cases.size(); i++)