Title: [156503] trunk/Source/WebCore
Revision
156503
Author
[email protected]
Date
2013-09-26 15:19:07 -0700 (Thu, 26 Sep 2013)

Log Message

[Qt] Fix build after r156487.
https://bugs.webkit.org/show_bug.cgi?id=121984

Patch by Julien Brianceau <[email protected]> on 2013-09-26
Reviewed by Anders Carlsson.

* bridge/qt/qt_runtime.cpp:
(JSC::Bindings::QtRuntimeMethod::jsObjectRef):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (156502 => 156503)


--- trunk/Source/WebCore/ChangeLog	2013-09-26 22:15:25 UTC (rev 156502)
+++ trunk/Source/WebCore/ChangeLog	2013-09-26 22:19:07 UTC (rev 156503)
@@ -1,3 +1,13 @@
+2013-09-26  Julien Brianceau  <[email protected]>
+
+        [Qt] Fix build after r156487.
+        https://bugs.webkit.org/show_bug.cgi?id=121984
+
+        Reviewed by Anders Carlsson.
+
+        * bridge/qt/qt_runtime.cpp:
+        (JSC::Bindings::QtRuntimeMethod::jsObjectRef):
+
 2013-09-26  Antti Koivisto  <[email protected]>
 
         Don't mutate style in RenderCombineText

Modified: trunk/Source/WebCore/bridge/qt/qt_runtime.cpp (156502 => 156503)


--- trunk/Source/WebCore/bridge/qt/qt_runtime.cpp	2013-09-26 22:15:25 UTC (rev 156502)
+++ trunk/Source/WebCore/bridge/qt/qt_runtime.cpp	2013-09-26 22:19:07 UTC (rev 156503)
@@ -1301,7 +1301,7 @@
     JSObjectSetProperty(context, object, connectStr, connectFunction, attributes, exception);
     JSObjectSetProperty(context, object, disconnectStr, disconnectFunction, attributes, exception);
 
-    m_jsObject = PassWeak<JSObject>(toJS(object));
+    m_jsObject = Weak<JSObject>(toJS(object));
 
     return object;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to