Janitor: Fix spelling of "synchronize".

This commit is contained in:
Kristian Bendiksen
2022-12-21 19:57:46 +01:00
parent cc537fc241
commit 142d8f0cc6
7 changed files with 29 additions and 29 deletions

View File

@@ -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;
}