From: mario@webkit.org Date: Tue, 24 Jan 2012 10:17:02 +0000 (+0000) Subject: Unreviewed build fix for GTK after r105698. X-Git-Tag: 070512121124~14711 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=943068cf9d642c55a1b48df2c78d6a69808fc526;p=profile%2Fivi%2Fwebkit-efl.git Unreviewed build fix for GTK after r105698. * bindings/js/JSPeerConnectionCustom.cpp: (WebCore::JSPeerConnectionConstructor::constructJSPeerConnection): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@105713 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index f49c305..92fe5f1 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,10 @@ +2012-01-24 Mario Sanchez Prada + + Unreviewed build fix for GTK after r105698. + + * bindings/js/JSPeerConnectionCustom.cpp: + (WebCore::JSPeerConnectionConstructor::constructJSPeerConnection): + 2012-01-24 Kent Tamura Fix build erros on Mac by r105706. diff --git a/Source/WebCore/bindings/js/JSPeerConnectionCustom.cpp b/Source/WebCore/bindings/js/JSPeerConnectionCustom.cpp index d1c581a..df37f91 100644 --- a/Source/WebCore/bindings/js/JSPeerConnectionCustom.cpp +++ b/Source/WebCore/bindings/js/JSPeerConnectionCustom.cpp @@ -48,7 +48,7 @@ EncodedJSValue JSC_HOST_CALL JSPeerConnectionConstructor::constructJSPeerConnect 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());