mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix QString arg issue in Ensemble RFT error message
This commit is contained in:
parent
596c18b903
commit
c6dbc34183
@ -219,7 +219,7 @@ void RifReaderFmuRft::load()
|
||||
QFileInfo fileInfo( m_filePath );
|
||||
if ( !( fileInfo.exists() && fileInfo.isDir() && fileInfo.isReadable() ) )
|
||||
{
|
||||
errorMsg = QString( "Directory '%s' does not exist or isn't readable" ).arg( m_filePath );
|
||||
errorMsg = QString( "Directory '%1' does not exist or isn't readable" ).arg( m_filePath );
|
||||
RiaLogging::error( errorMsg );
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user