mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Moved static method to the class where it belongs (more than it did).
This commit is contained in:
@@ -175,42 +175,6 @@ void RimWellPath::readWellPathFile()
|
||||
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimWellLogFile* RimWellPath::readWellLogFile(const QString& logFilePath)
|
||||
{
|
||||
QFileInfo fi(logFilePath);
|
||||
|
||||
RimWellLogFile* wellLogFile = NULL;
|
||||
|
||||
if (fi.suffix().toUpper().compare("LAS") == 0)
|
||||
{
|
||||
QString errorMessage;
|
||||
wellLogFile = new RimWellLogFile();
|
||||
wellLogFile->setFileName(logFilePath);
|
||||
if (!wellLogFile->readFile(&errorMessage))
|
||||
{
|
||||
QString displayMessage = "Could not open the LAS file: \n" + logFilePath;
|
||||
|
||||
if (!errorMessage.isEmpty())
|
||||
{
|
||||
displayMessage += "\n\n";
|
||||
displayMessage += errorMessage;
|
||||
}
|
||||
|
||||
QMessageBox::warning(RiuMainWindow::instance(),
|
||||
"File open error",
|
||||
displayMessage);
|
||||
|
||||
delete wellLogFile;
|
||||
wellLogFile = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
return wellLogFile;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
/// Read JSON file containing well path data
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user