Removed obsolete code to read data from ssihub

p4#: 22328
This commit is contained in:
Magne Sjaastad 2013-09-06 11:25:55 +02:00
parent a73b412235
commit 3208a74fbf
2 changed files with 3 additions and 6 deletions

View File

@ -59,8 +59,6 @@
#include "RimCellRangeFilterCollection.h"
#include "Rim3dOverlayInfoConfig.h"
#include "ssihubInterface/ssihubInterface.h"
//==================================================================================================
@ -100,8 +98,6 @@ RiuMainWindow::RiuMainWindow()
m_treeModelPdm = new RimUiTreeModelPdm(this);
m_ssihubInterface = new ssihub::Interface;
createActions();
createMenus();
createToolBars();
@ -1601,6 +1597,7 @@ void RiuMainWindow::selectedCases(std::vector<RimCase*>& cases)
//--------------------------------------------------------------------------------------------------
void RiuMainWindow::slotImportWellPathsFromSSIHub()
{
/*
CVF_ASSERT(m_ssihubInterface);
RiaApplication* app = RiaApplication::instance();
@ -1649,6 +1646,8 @@ void RiuMainWindow::slotImportWellPathsFromSSIHub()
app->addWellPathsToModel(wellPaths);
if (app->project()) app->project()->createDisplayModelAndRedrawAllViews();
}
*/
}
//--------------------------------------------------------------------------------------------------

View File

@ -262,6 +262,4 @@ private:
std::vector<QPointer<QDockWidget> > additionalProjectTrees;
std::vector<QPointer<QDockWidget> > additionalPropertyEditors;
ssihub::Interface* m_ssihubInterface;
};