| Index: sky/engine/core/events/AnimationEvent.cpp
|
| diff --git a/sky/engine/core/events/AnimationEvent.cpp b/sky/engine/core/events/AnimationEvent.cpp
|
| index 109e2b0e346749b49989b56e0c4a3e0c2677240b..15fae75c63e20f00371d1eeaa0dbec4e569d31f8 100644
|
| --- a/sky/engine/core/events/AnimationEvent.cpp
|
| +++ b/sky/engine/core/events/AnimationEvent.cpp
|
| @@ -37,7 +37,6 @@ AnimationEventInit::AnimationEventInit()
|
| AnimationEvent::AnimationEvent()
|
| : m_elapsedTime(0.0)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| AnimationEvent::AnimationEvent(const AtomicString& type, const AnimationEventInit& initializer)
|
| @@ -45,7 +44,6 @@ AnimationEvent::AnimationEvent(const AtomicString& type, const AnimationEventIni
|
| , m_animationName(initializer.animationName)
|
| , m_elapsedTime(initializer.elapsedTime)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| AnimationEvent::AnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime)
|
| @@ -53,7 +51,6 @@ AnimationEvent::AnimationEvent(const AtomicString& type, const String& animation
|
| , m_animationName(animationName)
|
| , m_elapsedTime(elapsedTime)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| AnimationEvent::~AnimationEvent()
|
|
|