| 1883 | } |
| 1884 | |
| 1885 | void Application::triggerUpdateCheck() |
| 1886 | { |
| 1887 | if (m_updater) { |
| 1888 | qDebug() << "Checking for updates."; |
| 1889 | m_updater->setBetaAllowed(false); // There are no other channels than stable |
| 1890 | m_updater->checkForUpdates(); |
| 1891 | } else { |
| 1892 | qDebug() << "Updater not available."; |
| 1893 | } |
| 1894 | } |
| 1895 | |
| 1896 | QUrl Application::normalizeImportUrl(QString const& url) |
| 1897 | { |
no test coverage detected