| 35 | }; |
| 36 | |
| 37 | SvgDocumentLoadedImpl::SvgDocumentLoadedImpl(Document *document, const QByteArray &data) |
| 38 | : AbstractDocumentImpl(document) |
| 39 | , d(new SvgDocumentLoadedImplPrivate) |
| 40 | { |
| 41 | d->mRawData = data; |
| 42 | d->mRenderer = new QSvgRenderer(this); |
| 43 | } |
| 44 | |
| 45 | SvgDocumentLoadedImpl::~SvgDocumentLoadedImpl() |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected