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,7 +34,7 @@
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
void RifInputPropertyLoader::loadAndSyncronizeInputProperties( RimEclipseInputPropertyCollection* inputPropertyCollection,
|
void RifInputPropertyLoader::loadAndSynchronizeInputProperties( RimEclipseInputPropertyCollection* inputPropertyCollection,
|
||||||
RigEclipseCaseData* eclipseCaseData,
|
RigEclipseCaseData* eclipseCaseData,
|
||||||
const std::vector<QString>& filenames,
|
const std::vector<QString>& filenames,
|
||||||
bool allowImportOfFaults )
|
bool allowImportOfFaults )
|
||||||
|
@ -34,7 +34,7 @@ class RigEclipseCaseData;
|
|||||||
class RifInputPropertyLoader
|
class RifInputPropertyLoader
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static void loadAndSyncronizeInputProperties( RimEclipseInputPropertyCollection* inputPropertyCollection,
|
static void loadAndSynchronizeInputProperties( RimEclipseInputPropertyCollection* inputPropertyCollection,
|
||||||
RigEclipseCaseData* eclipseCaseData,
|
RigEclipseCaseData* eclipseCaseData,
|
||||||
const std::vector<QString>& filenames,
|
const std::vector<QString>& filenames,
|
||||||
bool allowImportOfFaults );
|
bool allowImportOfFaults );
|
||||||
|
@ -724,7 +724,7 @@ std::vector<QString> RimEclipseCase::additionalFiles() const
|
|||||||
/// Loads input property data from the gridFile and additional files
|
/// Loads input property data from the gridFile and additional files
|
||||||
/// Creates new InputProperties if necessary, and flags the unused ones as obsolete
|
/// 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
|
// Make sure we actually have reservoir data
|
||||||
|
|
||||||
@ -739,7 +739,7 @@ void RimEclipseCase::loadAndSyncronizeInputProperties( bool importGridOrFaultDat
|
|||||||
filenames.push_back( fileName );
|
filenames.push_back( fileName );
|
||||||
}
|
}
|
||||||
|
|
||||||
RifInputPropertyLoader::loadAndSyncronizeInputProperties( inputPropertyCollection(),
|
RifInputPropertyLoader::loadAndSynchronizeInputProperties( inputPropertyCollection(),
|
||||||
eclipseCaseData(),
|
eclipseCaseData(),
|
||||||
filenames,
|
filenames,
|
||||||
importGridOrFaultData );
|
importGridOrFaultData );
|
||||||
|
@ -117,7 +117,7 @@ public:
|
|||||||
|
|
||||||
std::set<QString> sortedSimWellNames() const;
|
std::set<QString> sortedSimWellNames() const;
|
||||||
|
|
||||||
void loadAndSyncronizeInputProperties( bool importGridOrFaultData );
|
void loadAndSynchronizeInputProperties( bool importGridOrFaultData );
|
||||||
|
|
||||||
void ensureFaultDataIsComputed();
|
void ensureFaultDataIsComputed();
|
||||||
bool ensureNncDataIsComputed();
|
bool ensureNncDataIsComputed();
|
||||||
|
@ -174,7 +174,7 @@ bool RimEclipseInputCase::openDataFileSet( const QStringList& fileNames )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
RifInputPropertyLoader::loadAndSyncronizeInputProperties( m_inputPropertyCollection,
|
RifInputPropertyLoader::loadAndSynchronizeInputProperties( m_inputPropertyCollection,
|
||||||
this->eclipseCaseData(),
|
this->eclipseCaseData(),
|
||||||
filesToRead,
|
filesToRead,
|
||||||
importFaults );
|
importFaults );
|
||||||
@ -224,7 +224,7 @@ bool RimEclipseInputCase::openEclipseGridFile()
|
|||||||
|
|
||||||
this->eclipseCaseData()->mainGrid()->setFlipAxis( m_flipXAxis, m_flipYAxis );
|
this->eclipseCaseData()->mainGrid()->setFlipAxis( m_flipXAxis, m_flipYAxis );
|
||||||
|
|
||||||
loadAndSyncronizeInputProperties( true );
|
loadAndSynchronizeInputProperties( true );
|
||||||
computeCachedData();
|
computeCachedData();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -201,7 +201,7 @@ bool RimEclipseResultCase::importGridAndResultMetaData( bool showTimeStepFilter
|
|||||||
|
|
||||||
progInfo.setProgressDescription( "Computing Case Cache" );
|
progInfo.setProgressDescription( "Computing Case Cache" );
|
||||||
computeCachedData();
|
computeCachedData();
|
||||||
loadAndSyncronizeInputProperties( false );
|
loadAndSynchronizeInputProperties( false );
|
||||||
|
|
||||||
m_gridAndWellDataIsReadFromFile = true;
|
m_gridAndWellDataIsReadFromFile = true;
|
||||||
m_activeCellInfoIsReadFromFile = true;
|
m_activeCellInfoIsReadFromFile = true;
|
||||||
@ -236,7 +236,7 @@ bool RimEclipseResultCase::importGridAndResultMetaData( bool showTimeStepFilter
|
|||||||
bool RimEclipseResultCase::importAsciiInputProperties( const QStringList& fileNames )
|
bool RimEclipseResultCase::importAsciiInputProperties( const QStringList& fileNames )
|
||||||
{
|
{
|
||||||
bool importFaults = false;
|
bool importFaults = false;
|
||||||
RifInputPropertyLoader::loadAndSyncronizeInputProperties( m_inputPropertyCollection,
|
RifInputPropertyLoader::loadAndSynchronizeInputProperties( m_inputPropertyCollection,
|
||||||
this->eclipseCaseData(),
|
this->eclipseCaseData(),
|
||||||
std::vector<QString>( fileNames.begin(), fileNames.end() ),
|
std::vector<QString>( fileNames.begin(), fileNames.end() ),
|
||||||
importFaults );
|
importFaults );
|
||||||
|
@ -105,7 +105,7 @@ bool RimRoffCase::openEclipseGridFile()
|
|||||||
RifRoffFileTools::createInputProperties( fileName, eclipseCaseData() );
|
RifRoffFileTools::createInputProperties( fileName, eclipseCaseData() );
|
||||||
|
|
||||||
// Read properties from input property collection
|
// Read properties from input property collection
|
||||||
loadAndSyncronizeInputProperties( false );
|
loadAndSynchronizeInputProperties( false );
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -152,7 +152,7 @@ QString RimRoffCase::locationOnDisc() const
|
|||||||
bool RimRoffCase::importAsciiInputProperties( const QStringList& fileNames )
|
bool RimRoffCase::importAsciiInputProperties( const QStringList& fileNames )
|
||||||
{
|
{
|
||||||
bool importFaults = false;
|
bool importFaults = false;
|
||||||
RifInputPropertyLoader::loadAndSyncronizeInputProperties( m_inputPropertyCollection,
|
RifInputPropertyLoader::loadAndSynchronizeInputProperties( m_inputPropertyCollection,
|
||||||
this->eclipseCaseData(),
|
this->eclipseCaseData(),
|
||||||
std::vector<QString>( fileNames.begin(), fileNames.end() ),
|
std::vector<QString>( fileNames.begin(), fileNames.end() ),
|
||||||
importFaults );
|
importFaults );
|
||||||
|
Loading…
Reference in New Issue
Block a user