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

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