| 83 | #endif |
| 84 | |
| 85 | void openFiles(const QVector<UrlInfo>& infos) |
| 86 | { |
| 87 | for (const UrlInfo& info : infos) { |
| 88 | if (!ICore::self()->documentController()->openDocument(info.url, info.cursor)) { |
| 89 | qCWarning(APP) << i18n("Could not open %1", info.url.toDisplayString(QUrl::PreferLocalFile)); |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | } |
| 95 |
no test coverage detected