forked from organicmaps/organicmaps
spelling fix
This commit is contained in:
parent
c1eac6e67d
commit
da78f8b01f
2 changed files with 5 additions and 5 deletions
|
@ -47,7 +47,7 @@ RoutingMapping::RoutingMapping(CountryFile const & countryFile, MwmSet * pIndex)
|
|||
}
|
||||
|
||||
m_container.Open(localFile.GetPath(TMapOptions::ECarRouting));
|
||||
if (!CheckMwmConsistancy(localFile))
|
||||
if (!CheckMwmConsistency(localFile))
|
||||
{
|
||||
m_error = IRouter::ResultCode::InconsistentMWMandRoute;
|
||||
m_container.Close();
|
||||
|
@ -111,7 +111,7 @@ void RoutingMapping::LoadCrossContext()
|
|||
}
|
||||
}
|
||||
|
||||
bool RoutingMapping::CheckMwmConsistancy(platform::LocalCountryFile const & localFile)
|
||||
bool RoutingMapping::CheckMwmConsistency(platform::LocalCountryFile const & localFile)
|
||||
{
|
||||
FileReader r1 = m_container.GetReader(VERSION_FILE_TAG);
|
||||
ReaderSrc src1(r1);
|
||||
|
|
|
@ -30,7 +30,7 @@ struct RoutingMapping
|
|||
CrossRoutingContextReader m_crossContext;
|
||||
|
||||
///@param fName: mwm file path
|
||||
RoutingMapping(platform::CountryFile const & localFile, MwmSet * pIndex);
|
||||
RoutingMapping(platform::CountryFile const & countryFile, MwmSet * pIndex);
|
||||
|
||||
~RoutingMapping();
|
||||
|
||||
|
@ -66,11 +66,11 @@ private:
|
|||
RoutingMapping(platform::CountryFile const & countryFile);
|
||||
|
||||
/*!
|
||||
* \brief CheckMwmConsistancy checks versions of mwm and routing files.
|
||||
* \brief CheckMwmConsistency checks versions of mwm and routing files.
|
||||
* \param localFile reference to country file we need to check.
|
||||
* \return true if files has same versions.
|
||||
*/
|
||||
virtual bool CheckMwmConsistancy(platform::LocalCountryFile const & localFile);
|
||||
virtual bool CheckMwmConsistency(platform::LocalCountryFile const & localFile);
|
||||
|
||||
size_t m_mapCounter;
|
||||
size_t m_facadeCounter;
|
||||
|
|
Loading…
Add table
Reference in a new issue