summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@theqtcompany.com>2016-02-17 12:06:29 +0100
committerMaurice Kalinowski <maurice.kalinowski@theqtcompany.com>2016-02-18 04:59:31 +0000
commitf05e6784c7667d476b9ccde4be3568cfd6b2022d (patch)
tree0d5e414cdfdd27fc1349ee17719f11b5a9bef9a6
parentaf5591458ea7a6da6b6fedefc3685433d23f7462 (diff)
winrt: Emit the titleChanged() signal when appropriate
Change-Id: Iafc4f49a0e7a5aee6aef0622142271000b8f82e8 Reviewed-by: Maurice Kalinowski <maurice.kalinowski@theqtcompany.com>
-rw-r--r--src/webview/qwebview_winrt.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/webview/qwebview_winrt.cpp b/src/webview/qwebview_winrt.cpp
index e5543b8..eb78439 100644
--- a/src/webview/qwebview_winrt.cpp
+++ b/src/webview/qwebview_winrt.cpp
@@ -665,6 +665,7 @@ HRESULT QWinRTWebViewPrivate::onNavigationCompleted(IWebView *, IWebViewNavigati
const QString errorString = webErrorStatusString(errorStatus);
emit loadingChanged(QWebViewLoadRequestPrivate(url, status, errorString));
+ emit titleChanged(title());
emit loadProgressChanged(100);
return S_OK;
}