mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Improve fault reactivation file names (#11005)
Use model name in exported file name. Add model name to include file names.
This commit is contained in:
@@ -54,9 +54,9 @@ void RicShowFaultReactModelFeature::onActionTriggered( bool isChecked )
|
||||
if ( model == nullptr ) return;
|
||||
|
||||
const QString frmTitle( "Fault Reactivation Modeling" );
|
||||
const QString exportFile = model->inputFilename();
|
||||
|
||||
auto [result, errText] = RifFaultReactivationModelExporter::exportToFile( exportFile.toStdString(), *model );
|
||||
auto exportFile = QString::fromStdString( model->inputFilename() );
|
||||
auto [result, errText] = RifFaultReactivationModelExporter::exportToFile( *model );
|
||||
if ( !result )
|
||||
{
|
||||
QString outErrorText =
|
||||
|
||||
Reference in New Issue
Block a user