summaryrefslogtreecommitdiffstats
path: root/WebCore/bridge/objc/objc_runtime.mm
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-01-20 11:42:04 +0000
committerSteve Block <steveblock@google.com>2010-01-20 12:03:31 +0000
commit16885d427ad88d2062898f56b801491974b88201 (patch)
tree0ad642993fa0310f5180ff5e71f94ccbf0074bf6 /WebCore/bridge/objc/objc_runtime.mm
parent9d25b5789c947f3974b7a4f722240ae95cad733e (diff)
downloadexternal_webkit-16885d427ad88d2062898f56b801491974b88201.zip
external_webkit-16885d427ad88d2062898f56b801491974b88201.tar.gz
external_webkit-16885d427ad88d2062898f56b801491974b88201.tar.bz2
Cherry-pick WebKit change 53541 to fix style in WebCore/bridge/Bridge
See http://trac.webkit.org/changeset/53541 This is required to sync the Android tree with webkit.org to allow unforking in WebCore/bridge. Change-Id: Ifa112a8700149b21a1a1bbdf8366844adb3a9ae6
Diffstat (limited to 'WebCore/bridge/objc/objc_runtime.mm')
-rw-r--r--WebCore/bridge/objc/objc_runtime.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/bridge/objc/objc_runtime.mm b/WebCore/bridge/objc/objc_runtime.mm
index 5efc865..772695c 100644
--- a/WebCore/bridge/objc/objc_runtime.mm
+++ b/WebCore/bridge/objc/objc_runtime.mm
@@ -174,7 +174,7 @@ JSValue ObjcArray::valueAt(ExecState* exec, unsigned int index) const
@try {
id obj = [_array.get() objectAtIndex:index];
if (obj)
- return convertObjcValueToValue (exec, &obj, ObjcObjectType, _rootObject.get());
+ return convertObjcValueToValue (exec, &obj, ObjcObjectType, m_rootObject.get());
} @catch(NSException* localException) {
return throwError(exec, GeneralError, "Objective-C exception.");
}