More renaming LikedView -> ViewLink

This commit is contained in:
Jacob Støren
2015-09-11 17:19:33 +02:00
parent 984656cbfa
commit 238c783b26
5 changed files with 33 additions and 33 deletions

View File

@@ -972,9 +972,9 @@ RimViewLinker* RimProject::findViewLinkerFromView(RimView* view)
RimViewLinker* group = viewLinkerCollection()->viewLinkers()[i];
if (view == group->mainView()) return group;
for (size_t j = 0; j < group->linkedViews.size(); j++)
for (size_t j = 0; j < group->viewLinks.size(); j++)
{
RimViewLink* viewConfig = group->linkedViews[j];
RimViewLink* viewConfig = group->viewLinks[j];
if (viewConfig->managedView() == view) return group;
}
}