summaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/qmlmanager.cpp7
-rw-r--r--mobile-widgets/qmlmanager.h2
2 files changed, 8 insertions, 1 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index 3495468db..1adf5bf57 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -1776,3 +1776,10 @@ int QMLManager::getDetectedProductIndex(const QString &currentVendorText)
{
return m_device_data->getDetectedProductIndex(currentVendorText);
}
+
+void QMLManager::showDownloadPage(QString deviceString)
+{
+ // inform the QML UI that it should show the download page
+ m_pluggedInDeviceName = strdup(qPrintable(deviceString));
+ emit pluggedInDeviceNameChanged();
+}
diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h
index c4ed27e7c..9b956aafe 100644
--- a/mobile-widgets/qmlmanager.h
+++ b/mobile-widgets/qmlmanager.h
@@ -192,7 +192,7 @@ public slots:
void quit();
void hasLocationSourceChanged();
void btRescan();
-
+ void showDownloadPage(QString deviceString);
private:
BuddyCompletionModel buddyModel;