mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
(#537) Handling LAS file names no matter what case the extension has
.las, .LAS, .Las, .laS, etc. should now all work.
This commit is contained in:
parent
4424c110be
commit
4e3f51909b
@ -184,7 +184,7 @@ RimWellLogFile* RimWellPath::readWellLogFile(const QString& logFilePath)
|
||||
|
||||
RimWellLogFile* wellLogFile = NULL;
|
||||
|
||||
if (fi.suffix().compare("las") == 0)
|
||||
if (fi.suffix().toUpper().compare("LAS") == 0)
|
||||
{
|
||||
QString errorMessage;
|
||||
wellLogFile = new RimWellLogFile();
|
||||
|
Loading…
Reference in New Issue
Block a user