| 33 | }; |
| 34 | |
| 35 | PartDocument::PartDocument(const QUrl& url, KDevelop::ICore* core, const QString& preferredPart) |
| 36 | : Sublime::UrlDocument(core->uiController()->controller(), url) |
| 37 | , KDevelop::IDocument(core) |
| 38 | , d_ptr(new PartDocumentPrivate(preferredPart)) |
| 39 | { |
| 40 | } |
| 41 | |
| 42 | PartDocument::~PartDocument() = default; |
| 43 |
nothing calls this directly
no test coverage detected