| Index: sky/engine/core/events/TextEvent.cpp
|
| diff --git a/sky/engine/core/events/TextEvent.cpp b/sky/engine/core/events/TextEvent.cpp
|
| index 087813886249c8a19b668a7297b3b20b55063935..612792e14d215795643fb12de035cfb7f38f1780 100644
|
| --- a/sky/engine/core/events/TextEvent.cpp
|
| +++ b/sky/engine/core/events/TextEvent.cpp
|
| @@ -61,7 +61,6 @@ TextEvent::TextEvent()
|
| , m_shouldSmartReplace(false)
|
| , m_shouldMatchStyle(false)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType)
|
| @@ -72,7 +71,6 @@ TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEven
|
| , m_shouldSmartReplace(false)
|
| , m_shouldMatchStyle(false)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment,
|
| @@ -84,7 +82,6 @@ TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefP
|
| , m_shouldSmartReplace(shouldSmartReplace)
|
| , m_shouldMatchStyle(shouldMatchStyle)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| TextEvent::~TextEvent()
|
|
|