| 2027 | } |
| 2028 | |
| 2029 | void Application::triggerUpdateCheck() |
| 2030 | { |
| 2031 | if (m_updater) { |
| 2032 | qDebug() << "Checking for updates."; |
| 2033 | m_updater->setBetaAllowed(false); // There are no other channels than stable |
| 2034 | m_updater->checkForUpdates(); |
| 2035 | } else { |
| 2036 | qDebug() << "Updater not available."; |
| 2037 | } |
| 2038 | } |
| 2039 | |
| 2040 | QUrl Application::normalizeImportUrl(const QString& url) |
| 2041 | { |
no test coverage detected