fixed compilation errors.

This commit is contained in:
rachytski 2011-07-18 21:21:01 +03:00 committed by Alex Zolotarev
parent de7bdf478e
commit e68c9d43b4

View file

@ -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,