Title: [105713] trunk/Source/WebCore
Revision
105713
Author
[email protected]
Date
2012-01-24 02:17:02 -0800 (Tue, 24 Jan 2012)

Log Message

Unreviewed build fix for GTK after r105698.

* bindings/js/JSPeerConnectionCustom.cpp:
(WebCore::JSPeerConnectionConstructor::constructJSPeerConnection):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (105712 => 105713)


--- trunk/Source/WebCore/ChangeLog	2012-01-24 10:12:20 UTC (rev 105712)
+++ trunk/Source/WebCore/ChangeLog	2012-01-24 10:17:02 UTC (rev 105713)
@@ -1,3 +1,10 @@
+2012-01-24  Mario Sanchez Prada  <[email protected]>
+
+        Unreviewed build fix for GTK after r105698.
+
+        * bindings/js/JSPeerConnectionCustom.cpp:
+        (WebCore::JSPeerConnectionConstructor::constructJSPeerConnection):
+
 2012-01-24  Kent Tamura  <[email protected]>
 
         Fix build erros on Mac by r105706.

Modified: trunk/Source/WebCore/bindings/js/JSPeerConnectionCustom.cpp (105712 => 105713)


--- trunk/Source/WebCore/bindings/js/JSPeerConnectionCustom.cpp	2012-01-24 10:12:20 UTC (rev 105712)
+++ trunk/Source/WebCore/bindings/js/JSPeerConnectionCustom.cpp	2012-01-24 10:17:02 UTC (rev 105713)
@@ -48,7 +48,7 @@
     if (exec->argumentCount() < 2)
         return throwVMError(exec, createTypeError(exec, "Not enough arguments"));
 
-    String serverConfiguration = ustringToString(exec->argument(0).toString(exec));
+    String serverConfiguration = ustringToString(exec->argument(0).toString(exec)->value(exec));
     if (exec->hadException())
         return JSValue::encode(JSValue());
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to