diff options
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 7 |
1 files changed, 7 insertions, 0 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 ¤tVendorText) { 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(); +} |