summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@nokia.com>2010-10-14 16:22:34 (GMT)
committerTor Arne Vestbø <tor.arne.vestbo@nokia.com>2010-10-15 12:11:47 (GMT)
commit9c93d0de104bfc591def1a2ce8d477ea0a1d62eb (patch)
treee6f8196f8bdfa882b8aafcd871619d00f0ca4194 /src/3rdparty/webkit
parent08b716363ef16bf31d2d9df103a5904bf15bbb98 (diff)
downloadQt-9c93d0de104bfc591def1a2ce8d477ea0a1d62eb.zip
Qt-9c93d0de104bfc591def1a2ce8d477ea0a1d62eb.tar.gz
Qt-9c93d0de104bfc591def1a2ce8d477ea0a1d62eb.tar.bz2
Apply WebKit revision 60451 manually to fix Clang build issue
https://bugs.webkit.org/show_bug.cgi?id=39945 This revision is already present in QtWebKit 2.1
Diffstat (limited to 'src/3rdparty/webkit')
-rw-r--r--src/3rdparty/webkit/WebCore/bindings/js/JSDOMBinding.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/webkit/WebCore/bindings/js/JSDOMBinding.h b/src/3rdparty/webkit/WebCore/bindings/js/JSDOMBinding.h
index 40f7e40..0df23a2 100644
--- a/src/3rdparty/webkit/WebCore/bindings/js/JSDOMBinding.h
+++ b/src/3rdparty/webkit/WebCore/bindings/js/JSDOMBinding.h
@@ -225,7 +225,7 @@ namespace WebCore {
{
if (!node)
return JSC::jsNull();
- if (JSNode* wrapper = getCachedDOMNodeWrapper(exec, node->document(), node))
+ if (JSC::JSCell* wrapper = getCachedDOMNodeWrapper(exec, node->document(), node))
return wrapper;
return createDOMNodeWrapper<WrapperClass>(exec, globalObject, node);
}