| 162 | TWScriptableWindow::runHooks(const QString& hookName) |
| 163 | { |
| 164 | foreach (Tw::Scripting::ScriptObject *s, TWApp::instance()->getScriptManager()->getHookScripts(hookName)) { |
| 165 | // Don't use TWScriptManager::runHooks here to get status bar messages |
| 166 | runScript(s, Tw::Scripting::Script::ScriptHook); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | void |
no test coverage detected