#2431 : Remove RivWellPathPartMgr from RimWellPath

This commit is contained in:
Magne Sjaastad 2018-02-05 14:25:44 +01:00
parent cd575ef9c1
commit df231ab50a
2 changed files with 0 additions and 26 deletions

View File

@ -42,8 +42,6 @@
#include "RiuMainWindow.h"
#include "RivWellPathPartMgr.h"
#include "cafPdmUiTreeOrdering.h"
#include "cafUtils.h"
@ -300,24 +298,6 @@ const RigWellPath* RimWellPath::wellPathGeometry() const
return m_wellPath.p();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RivWellPathPartMgr* RimWellPath::partMgr()
{
/*
if (m_wellPathPartMgr.isNull())
{
RimWellPathCollection* wpColl;
this->firstAncestorOrThisOfType(wpColl);
if (wpColl) m_wellPathPartMgr = new RivWellPathPartMgr(this);
}
return m_wellPathPartMgr.p();
*/
return nullptr;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@ -42,7 +42,6 @@ class RigWellPath;
class RimProject;
class RimWellLogFile;
class RimFishboneWellPathCollection;
class RivWellPathPartMgr;
class RimFishbonesCollection;
class RimPerforationCollection;
@ -119,8 +118,6 @@ public:
RigWellPath* wellPathGeometry();
const RigWellPath* wellPathGeometry() const;
RivWellPathPartMgr* partMgr();
bool readWellPathFile(QString * errorMessage, RifWellPathImporter* wellPathImporter);
void updateFilePathsFromProjectPath(const QString& newProjectPath, const QString& oldProjectPath);
@ -172,7 +169,6 @@ private:
cvf::ref<RigWellPath> m_wellPath;
cvf::ref<RigWellPathFormations> m_wellPathFormations;
cvf::ref<RivWellPathPartMgr> m_wellPathPartMgr;
caf::PdmField<QString> m_name;
caf::PdmField<QString> m_wellPathFormationFilePath;
@ -180,7 +176,5 @@ private:
caf::PdmChildArrayField<RimWellLogFile*> m_wellLogFiles;
caf::PdmChildField<RimWellLogFile*> m_wellLogFile_OBSOLETE;
};