[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:
Jaime Marquínez Ferrándiz 2023-10-25 22:26:32 +02:00 committed by Viktor Govako
parent 33d806eac9
commit dd109cecfc

View file

@ -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();