mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Janitor: Fix spelling of "synchronize".
This commit is contained in:
parent
cc537fc241
commit
142d8f0cc6
@ -34,10 +34,10 @@
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RifInputPropertyLoader::loadAndSyncronizeInputProperties( RimEclipseInputPropertyCollection* inputPropertyCollection,
|
||||
RigEclipseCaseData* eclipseCaseData,
|
||||
const std::vector<QString>& filenames,
|
||||
bool allowImportOfFaults )
|
||||
void RifInputPropertyLoader::loadAndSynchronizeInputProperties( RimEclipseInputPropertyCollection* inputPropertyCollection,
|
||||
RigEclipseCaseData* eclipseCaseData,
|
||||
const std::vector<QString>& filenames,
|
||||
bool allowImportOfFaults )
|
||||
{
|
||||
std::vector<RimEclipseInputProperty*> existingProperties = inputPropertyCollection->inputProperties.children();
|
||||
|
||||
|
@ -34,10 +34,10 @@ class RigEclipseCaseData;
|
||||
class RifInputPropertyLoader
|
||||
{
|
||||
public:
|
||||
static void loadAndSyncronizeInputProperties( RimEclipseInputPropertyCollection* inputPropertyCollection,
|
||||
RigEclipseCaseData* eclipseCaseData,
|
||||
const std::vector<QString>& filenames,
|
||||
bool allowImportOfFaults );
|
||||
static void loadAndSynchronizeInputProperties( RimEclipseInputPropertyCollection* inputPropertyCollection,
|
||||
RigEclipseCaseData* eclipseCaseData,
|
||||
const std::vector<QString>& filenames,
|
||||
bool allowImportOfFaults );
|
||||
|
||||
private:
|
||||
static std::map<QString, QString> readProperties( const QString& fileName, RigEclipseCaseData* eclipseCaseData );
|
||||
|
@ -724,7 +724,7 @@ std::vector<QString> RimEclipseCase::additionalFiles() const
|
||||
/// Loads input property data from the gridFile and additional files
|
||||
/// Creates new InputProperties if necessary, and flags the unused ones as obsolete
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimEclipseCase::loadAndSyncronizeInputProperties( bool importGridOrFaultData )
|
||||
void RimEclipseCase::loadAndSynchronizeInputProperties( bool importGridOrFaultData )
|
||||
{
|
||||
// Make sure we actually have reservoir data
|
||||
|
||||
@ -739,10 +739,10 @@ void RimEclipseCase::loadAndSyncronizeInputProperties( bool importGridOrFaultDat
|
||||
filenames.push_back( fileName );
|
||||
}
|
||||
|
||||
RifInputPropertyLoader::loadAndSyncronizeInputProperties( inputPropertyCollection(),
|
||||
eclipseCaseData(),
|
||||
filenames,
|
||||
importGridOrFaultData );
|
||||
RifInputPropertyLoader::loadAndSynchronizeInputProperties( inputPropertyCollection(),
|
||||
eclipseCaseData(),
|
||||
filenames,
|
||||
importGridOrFaultData );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
@ -117,7 +117,7 @@ public:
|
||||
|
||||
std::set<QString> sortedSimWellNames() const;
|
||||
|
||||
void loadAndSyncronizeInputProperties( bool importGridOrFaultData );
|
||||
void loadAndSynchronizeInputProperties( bool importGridOrFaultData );
|
||||
|
||||
void ensureFaultDataIsComputed();
|
||||
bool ensureNncDataIsComputed();
|
||||
|
@ -174,10 +174,10 @@ bool RimEclipseInputCase::openDataFileSet( const QStringList& fileNames )
|
||||
}
|
||||
}
|
||||
|
||||
RifInputPropertyLoader::loadAndSyncronizeInputProperties( m_inputPropertyCollection,
|
||||
this->eclipseCaseData(),
|
||||
filesToRead,
|
||||
importFaults );
|
||||
RifInputPropertyLoader::loadAndSynchronizeInputProperties( m_inputPropertyCollection,
|
||||
this->eclipseCaseData(),
|
||||
filesToRead,
|
||||
importFaults );
|
||||
|
||||
if ( importFaults )
|
||||
{
|
||||
@ -224,7 +224,7 @@ bool RimEclipseInputCase::openEclipseGridFile()
|
||||
|
||||
this->eclipseCaseData()->mainGrid()->setFlipAxis( m_flipXAxis, m_flipYAxis );
|
||||
|
||||
loadAndSyncronizeInputProperties( true );
|
||||
loadAndSynchronizeInputProperties( true );
|
||||
computeCachedData();
|
||||
}
|
||||
|
||||
|
@ -201,7 +201,7 @@ bool RimEclipseResultCase::importGridAndResultMetaData( bool showTimeStepFilter
|
||||
|
||||
progInfo.setProgressDescription( "Computing Case Cache" );
|
||||
computeCachedData();
|
||||
loadAndSyncronizeInputProperties( false );
|
||||
loadAndSynchronizeInputProperties( false );
|
||||
|
||||
m_gridAndWellDataIsReadFromFile = true;
|
||||
m_activeCellInfoIsReadFromFile = true;
|
||||
@ -236,10 +236,10 @@ bool RimEclipseResultCase::importGridAndResultMetaData( bool showTimeStepFilter
|
||||
bool RimEclipseResultCase::importAsciiInputProperties( const QStringList& fileNames )
|
||||
{
|
||||
bool importFaults = false;
|
||||
RifInputPropertyLoader::loadAndSyncronizeInputProperties( m_inputPropertyCollection,
|
||||
this->eclipseCaseData(),
|
||||
std::vector<QString>( fileNames.begin(), fileNames.end() ),
|
||||
importFaults );
|
||||
RifInputPropertyLoader::loadAndSynchronizeInputProperties( m_inputPropertyCollection,
|
||||
this->eclipseCaseData(),
|
||||
std::vector<QString>( fileNames.begin(), fileNames.end() ),
|
||||
importFaults );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -105,7 +105,7 @@ bool RimRoffCase::openEclipseGridFile()
|
||||
RifRoffFileTools::createInputProperties( fileName, eclipseCaseData() );
|
||||
|
||||
// Read properties from input property collection
|
||||
loadAndSyncronizeInputProperties( false );
|
||||
loadAndSynchronizeInputProperties( false );
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -152,10 +152,10 @@ QString RimRoffCase::locationOnDisc() const
|
||||
bool RimRoffCase::importAsciiInputProperties( const QStringList& fileNames )
|
||||
{
|
||||
bool importFaults = false;
|
||||
RifInputPropertyLoader::loadAndSyncronizeInputProperties( m_inputPropertyCollection,
|
||||
this->eclipseCaseData(),
|
||||
std::vector<QString>( fileNames.begin(), fileNames.end() ),
|
||||
importFaults );
|
||||
RifInputPropertyLoader::loadAndSynchronizeInputProperties( m_inputPropertyCollection,
|
||||
this->eclipseCaseData(),
|
||||
std::vector<QString>( fileNames.begin(), fileNames.end() ),
|
||||
importFaults );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user