[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

eric at webkit.org eric at webkit.org
Thu Oct 29 20:46:55 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 4a222fb400a69f7a716b6dcac01c4f9e52b35fda
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Oct 17 15:54:18 2009 +0000

    2009-10-17  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Eric Seidel.
    
            EventHandler::eventLoopHandleMouseDragged needs ENABLE(DRAG_SUPPORT) guards
            https://bugs.webkit.org/show_bug.cgi?id=30472
    
            Put ENABLE(DRAG_SUPPORT) guards around EventHandler::eventLoopHandleMouseDragged
            in EventHandler.cpp. MSVC fails to compile when DRAG_SUPPORT not enabled.
    
            * page/EventHandler.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49742 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index b3621d0..cfd249e 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2009-10-17  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Eric Seidel.
+
+        EventHandler::eventLoopHandleMouseDragged needs ENABLE(DRAG_SUPPORT) guards
+        https://bugs.webkit.org/show_bug.cgi?id=30472
+
+        Put ENABLE(DRAG_SUPPORT) guards around EventHandler::eventLoopHandleMouseDragged
+        in EventHandler.cpp. MSVC fails to compile when DRAG_SUPPORT not enabled.
+
+        * page/EventHandler.cpp:
+
 2009-10-17  Alpha Lam  <hclam at chromium.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/page/EventHandler.cpp b/WebCore/page/EventHandler.cpp
index a19cd82..4e97aba 100644
--- a/WebCore/page/EventHandler.cpp
+++ b/WebCore/page/EventHandler.cpp
@@ -127,10 +127,12 @@ inline bool EventHandler::eventLoopHandleMouseUp(const MouseEventWithHitTestResu
     return false;
 }
 
+#if ENABLE(DRAG_SUPPORT)
 inline bool EventHandler::eventLoopHandleMouseDragged(const MouseEventWithHitTestResults&)
 {
     return false;
 }
+#endif
 
 #endif
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list