forked from organicmaps/organicmaps
[qt] Correctly handle the case when QGeoPositionInfoSource::createSource returns a null pointer
Only log the information on the service creation. Signed-off-by: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>
This commit is contained in:
parent
33d806eac9
commit
dd109cecfc
1 changed files with 2 additions and 10 deletions
|
@ -128,11 +128,7 @@ void QtLocationService::OnSupportedPositioningMethodsChanged()
|
|||
|
||||
void QtLocationService::Start()
|
||||
{
|
||||
if (!m_positionSource)
|
||||
{
|
||||
LOG(LWARNING, ("No supported source is available for starting the positioning with:", m_positionSource->sourceName().toStdString()));
|
||||
}
|
||||
else
|
||||
if (m_positionSource)
|
||||
{
|
||||
LOG(LDEBUG, ("Starting Updates from:", m_positionSource->sourceName().toStdString()));
|
||||
m_positionSource->startUpdates();
|
||||
|
@ -143,11 +139,7 @@ void QtLocationService::Start()
|
|||
|
||||
void QtLocationService::Stop()
|
||||
{
|
||||
if (!m_positionSource)
|
||||
{
|
||||
LOG(LWARNING, ("No supported source is available for stopping the positioning with:", m_positionSource->sourceName().toStdString()));
|
||||
}
|
||||
else
|
||||
if (m_positionSource)
|
||||
{
|
||||
LOG(LDEBUG, ("Stopping Updates from:", m_positionSource->sourceName().toStdString()));
|
||||
m_positionSource->stopUpdates();
|
||||
|
|
Loading…
Add table
Reference in a new issue