#1842 RFT plot. Initial commit. Under construction...

This commit is contained in:
Bjørn Erik Jensen
2017-09-27 12:39:28 +02:00
parent 88902e8f03
commit 70a41709cf
20 changed files with 1888 additions and 1 deletions

View File

@@ -56,6 +56,7 @@
#include "RimViewLinker.h"
#include "RimViewLinkerCollection.h"
#include "RimWellLogPlotCollection.h"
#include "RimRftPlotCollection.h"
#include "RimWellPathCollection.h"
#include "RimWellPathImport.h"
@@ -908,7 +909,12 @@ void RimProject::defineUiTreeOrdering(caf::PdmUiTreeOrdering& uiTreeOrdering, QS
uiTreeOrdering.add(mainPlotCollection->wellLogPlotCollection());
}
if (mainPlotCollection->flowPlotCollection())
if (mainPlotCollection->rftPlotCollection())
{
uiTreeOrdering.add(mainPlotCollection->rftPlotCollection());
}
if (mainPlotCollection->flowPlotCollection())
{
uiTreeOrdering.add(mainPlotCollection->flowPlotCollection());
}