From f61a0512cc56c0e86870a66fcca43e0a16e4e8e9 Mon Sep 17 00:00:00 2001
From: Paolo Angelelli <paolo.angelelli@qt.io>
Date: Mon, 21 Aug 2017 14:42:32 +0200
Subject: [PATCH] Fix GeocodeModel not autoUpdating if plugin attaches late

This patch handles the case when the plugin attaches after
QDeclarativeGeocodeModel::componentComplete() has been
called.

Change-Id: Ib9e4991ab3a4a34730da2d55fae20a492ac9d9f2
Reviewed-by: BogDan Vatra <bogdan@kdab.com>
---
 src/location/declarativemaps/qdeclarativegeocodemodel.cpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/location/declarativemaps/qdeclarativegeocodemodel.cpp b/src/location/declarativemaps/qdeclarativegeocodemodel.cpp
index ee435a5ac..3e2a1aea3 100644
--- a/src/location/declarativemaps/qdeclarativegeocodemodel.cpp
+++ b/src/location/declarativemaps/qdeclarativegeocodemodel.cpp
@@ -319,6 +319,9 @@ void QDeclarativeGeocodeModel::pluginReady()
             this, SLOT(geocodeFinished(QGeoCodeReply*)));
     connect(geocodingManager, SIGNAL(error(QGeoCodeReply*,QGeoCodeReply::Error,QString)),
             this, SLOT(geocodeError(QGeoCodeReply*,QGeoCodeReply::Error,QString)));
+
+    if (complete_ && autoUpdate_)
+        update();
 }
 
 /*!
-- 
GitLab