Removed debug output

p4#: 21887
This commit is contained in:
Jacob Støren
2013-06-12 10:52:46 +02:00
parent a9d2baf117
commit 03ad142261
7 changed files with 17 additions and 15 deletions

View File

@@ -309,7 +309,7 @@ bool RiaApplication::loadProject(const QString& projectFileName)
if (oilField == NULL) continue;
if (oilField->wellPathCollection == NULL)
{
printf("Create well path collection for oil field %i in loadProject.\n", oilFieldIdx);
//printf("Create well path collection for oil field %i in loadProject.\n", oilFieldIdx);
oilField->wellPathCollection = new RimWellPathCollection();
oilField->wellPathCollection->setProject(m_project);
}
@@ -367,7 +367,7 @@ void RiaApplication::addWellPathsToModel(QList<QString> wellPathFilePaths)
if (oilField->wellPathCollection == NULL)
{
printf("Create well path collection.\n");
//printf("Create well path collection.\n");
oilField->wellPathCollection = new RimWellPathCollection();
oilField->wellPathCollection->setProject(m_project);
RiuMainWindow::instance()->uiPdmModel()->updateUiSubTree(m_project);