summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r--mobile-widgets/qmlmanager.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index 94a47e51c..e502410af 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -1856,3 +1856,15 @@ void QMLManager::showDownloadPage(QString deviceString)
m_pluggedInDeviceName = strdup(qPrintable(name));
emit pluggedInDeviceNameChanged();
}
+
+#if defined(Q_OS_ANDROID)
+// implemented in core/android.cpp
+void checkPendingIntents();
+#endif
+
+void QMLManager::appInitialized()
+{
+#if defined(Q_OS_ANDROID)
+ checkPendingIntents();
+#endif
+}