[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 00:29:15 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit cc5fd01e7403aad0b6d17c8c2a8fa2cef748b074
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