forked from organicmaps/organicmaps-tmp
fixed compilation errors.
This commit is contained in:
parent
de7bdf478e
commit
e68c9d43b4
1 changed files with 7 additions and 7 deletions
|
@ -69,15 +69,15 @@ void Framework<TModel>::OnGpsUpdate(location::GpsInfo const & info)
|
|||
Invalidate();
|
||||
}
|
||||
|
||||
template <typename TModel>
|
||||
void FrameWork<TModel>::OnCompassUpdate(location::CompassInfo const & info)
|
||||
template <typename TModel>
|
||||
void Framework<TModel>::OnCompassUpdate(location::CompassInfo const & info)
|
||||
{
|
||||
if (info.m_timestamp < location::POSITION_TIMEOUT_SECONDS)
|
||||
{
|
||||
if (info.m_timestamp < location::POSITION_TIMEOUT_SECONDS)
|
||||
{
|
||||
m_locationState.UpdateCompass(info);
|
||||
Invalidate();
|
||||
}
|
||||
m_locationState.UpdateCompass(info);
|
||||
Invalidate();
|
||||
}
|
||||
}
|
||||
|
||||
template <typename TModel>
|
||||
Framework<TModel>::Framework(shared_ptr<WindowHandle> windowHandle,
|
||||
|
|
Loading…
Add table
Reference in a new issue