| 2214 | } |
| 2215 | |
| 2216 | void DocumentPrivate::executeScriptEvent(const std::shared_ptr<Event> &event, const Okular::ScriptAction *linkscript) |
| 2217 | { |
| 2218 | if (!m_scripter) { |
| 2219 | m_scripter = new Scripter(this); |
| 2220 | } |
| 2221 | m_scripter->execute(event.get(), linkscript->scriptType(), linkscript->script()); |
| 2222 | } |
| 2223 | |
| 2224 | Document::Document(QWidget *widget) |
| 2225 | : QObject(nullptr) |
no test coverage detected