Rename of class names and files related to linked views

This commit is contained in:
Magne Sjaastad
2015-09-07 14:29:46 +02:00
parent 797c14c6f6
commit f16b2af600
17 changed files with 159 additions and 160 deletions

View File

@@ -30,13 +30,13 @@
#include "RimGeoMechCellColors.h"
#include "RimGeoMechPropertyFilter.h"
#include "RimGeoMechView.h"
#include "RimProject.h"
#include "RimViewLinker.h"
#include "RimWellLogPlotCurve.h"
#include "RiuMainWindow.h"
#include "cafPdmUiListEditor.h"
#include "RimProject.h"
#include "RimLinkedViews.h"
#include "RimWellLogPlotCurve.h"
namespace caf {
@@ -198,10 +198,10 @@ void RimGeoMechResultDefinition::fieldChangedByUi(const caf::PdmFieldHandle* cha
RimProject* proj = NULL;
view->firstAnchestorOrThisOfType(proj);
RimLinkedViews* linkedViews = proj->findLinkedViewsGroupForView(view);
if (linkedViews)
RimViewLinker* viewLinker = proj->findViewLinkerFromView(view);
if (viewLinker)
{
linkedViews->updateCellResult();
viewLinker->updateCellResult();
}
}
}