[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
eric at webkit.org
eric at webkit.org
Tue Jan 5 23:45:59 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 42f6b7ca582dad2f76218a1c40e78d4f1a5a0149
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Dec 9 19:59:52 2009 +0000
2009-12-09 Patrick Scott <phanna at email.unc.edu>
Fix the build with ENABLE_ORIENTATION_EVENTS
https://bugs.webkit.org/show_bug.cgi?id=32321
* page/Frame.cpp:
(WebCore::Frame::sendOrientationChangeEvent):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51910 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 925887a..92ef5b6 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,11 @@
+2009-12-09 Patrick Scott <phanna at email.unc.edu>
+
+ Fix the build with ENABLE_ORIENTATION_EVENTS
+ https://bugs.webkit.org/show_bug.cgi?id=32321
+
+ * page/Frame.cpp:
+ (WebCore::Frame::sendOrientationChangeEvent):
+
2009-12-09 Avi Drissman <avi at chromium.org>
Reviewed by Darin Fisher.
diff --git a/WebCore/page/Frame.cpp b/WebCore/page/Frame.cpp
index a2b0a50..b5c278d 100644
--- a/WebCore/page/Frame.cpp
+++ b/WebCore/page/Frame.cpp
@@ -296,7 +296,7 @@ void Frame::sendOrientationChangeEvent(int orientation)
{
m_orientation = orientation;
if (Document* doc = document())
- doc->dispatchWindowEvent(eventNames().orientationchangeEvent, false, false);
+ doc->dispatchWindowEvent(Event::create(eventNames().orientationchangeEvent, false, false));
}
#endif // ENABLE(ORIENTATION_EVENTS)
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list