| 588 | } |
| 589 | |
| 590 | void KWin::DeclarativeScript::createComponent() |
| 591 | { |
| 592 | if (m_component->isError()) { |
| 593 | qCWarning(KWIN_SCRIPTING) << "Component failed to load: " << m_component->errors(); |
| 594 | } else { |
| 595 | if (QObject *object = m_component->create(m_context)) { |
| 596 | object->setParent(this); |
| 597 | } |
| 598 | } |
| 599 | setRunning(true); |
| 600 | } |
| 601 | |
| 602 | KWin::JSEngineGlobalMethodsWrapper::JSEngineGlobalMethodsWrapper(KWin::DeclarativeScript *parent) |
| 603 | : QObject(parent) |