mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Cleanup after merge
This commit is contained in:
@@ -199,6 +199,7 @@ void RiuMainWindow::createActions()
|
||||
m_mockModelAction = new QAction("&Mock Model", this);
|
||||
m_mockResultsModelAction = new QAction("Mock Model With &Results", this);
|
||||
m_mockLargeResultsModelAction = new QAction("Large Mock Model", this);
|
||||
m_mockModelCustomizedAction = new QAction("Customized Mock Model", this);
|
||||
m_mockInputModelAction = new QAction("Input Mock Model", this);
|
||||
|
||||
m_snapshotToFile = new QAction(QIcon(":/SnapShotSave.png"), "Snapshot To File", this);
|
||||
@@ -226,6 +227,7 @@ void RiuMainWindow::createActions()
|
||||
connect(m_mockModelAction, SIGNAL(triggered()), SLOT(slotMockModel()));
|
||||
connect(m_mockResultsModelAction, SIGNAL(triggered()), SLOT(slotMockResultsModel()));
|
||||
connect(m_mockLargeResultsModelAction, SIGNAL(triggered()), SLOT(slotMockLargeResultsModel()));
|
||||
connect(m_mockModelCustomizedAction, SIGNAL(triggered()), SLOT(slotMockModelCustomized()));
|
||||
connect(m_mockInputModelAction, SIGNAL(triggered()), SLOT(slotInputMockModel()));
|
||||
|
||||
connect(m_snapshotToFile, SIGNAL(triggered()), SLOT(slotSnapshotToFile()));
|
||||
@@ -386,6 +388,7 @@ void RiuMainWindow::createMenus()
|
||||
testMenu->addAction(m_mockModelAction);
|
||||
testMenu->addAction(m_mockResultsModelAction);
|
||||
testMenu->addAction(m_mockLargeResultsModelAction);
|
||||
testMenu->addAction(m_mockModelCustomizedAction);
|
||||
testMenu->addAction(m_mockInputModelAction);
|
||||
testMenu->addSeparator();
|
||||
testMenu->addAction(m_createCommandObject);
|
||||
@@ -846,8 +849,6 @@ void RiuMainWindow::slotMockModel()
|
||||
{
|
||||
RiaApplication* app = RiaApplication::instance();
|
||||
app->createMockModel();
|
||||
|
||||
//m_mainViewer->setDefaultView();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -857,8 +858,6 @@ void RiuMainWindow::slotMockResultsModel()
|
||||
{
|
||||
RiaApplication* app = RiaApplication::instance();
|
||||
app->createResultsMockModel();
|
||||
|
||||
//m_mainViewer->setDefaultView();
|
||||
}
|
||||
|
||||
|
||||
@@ -871,6 +870,14 @@ void RiuMainWindow::slotMockLargeResultsModel()
|
||||
app->createLargeResultsMockModel();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuMainWindow::slotMockModelCustomized()
|
||||
{
|
||||
RiaApplication* app = RiaApplication::instance();
|
||||
app->createMockModelCustomized();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
@@ -1447,9 +1454,9 @@ void RiuMainWindow::slotOpenMultipleCases()
|
||||
|
||||
if (1)
|
||||
{
|
||||
gridFileNames += "Result Mock Debug Model With Results";
|
||||
gridFileNames += "Result Mock Debug Model With Results";
|
||||
gridFileNames += "Result Mock Debug Model With Results";
|
||||
gridFileNames += RimDefines::mockModelBasicWithResults();
|
||||
gridFileNames += RimDefines::mockModelBasicWithResults();
|
||||
gridFileNames += RimDefines::mockModelBasicWithResults();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user