| 5508 | } |
| 5509 | |
| 5510 | void DocumentPrivate::executeScript(const QString &function) |
| 5511 | { |
| 5512 | if (!m_scripter) { |
| 5513 | m_scripter = new Scripter(this); |
| 5514 | } |
| 5515 | m_scripter->execute(nullptr, JavaScript, function); |
| 5516 | } |
| 5517 | |
| 5518 | void DocumentPrivate::requestDone(PixmapRequest *req) |
| 5519 | { |
no test coverage detected