| 263 | } |
| 264 | |
| 265 | void QNapiApp::showCreateAccount(const QString &engineName) const { |
| 266 | Maybe<QUrl> maybeRegistrationUrl = |
| 267 | enginesRegistry->engineMetadata(engineName).registrationUrl(); |
| 268 | |
| 269 | if (maybeRegistrationUrl) { |
| 270 | QDesktopServices::openUrl(maybeRegistrationUrl.value()); |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | void QNapiApp::showOSUploadDialog() const { |
| 275 | QDesktopServices::openUrl(QUrl("http://www.opensubtitles.org/upload")); |
nothing calls this directly
no test coverage detected