[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:41:07 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f521a4b5db9909a395d92997a667dfa8283a4361
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 21 01:44:52 2002 +0000

            Assume triple click for selection if click count >= 3,
            not == 3, as in OS X.
    
            * khtml/khtml_part.cpp:
            (KHTMLPart::khtmlMousePressEvent):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2113 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index c1b3065..330f8a0 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-09-20  Richard Williamson   <rjw at apple.com>
 
+        Assume triple click for selection if click count >= 3,
+        not == 3, as in OS X.
+        
+        * khtml/khtml_part.cpp:
+        (KHTMLPart::khtmlMousePressEvent):
+
+2002-09-20  Richard Williamson   <rjw at apple.com>
+
         Fixed crasher in findTextSlave.
         * khtml/rendering/render_text.cpp:
         (RenderText::findTextSlave):
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index c1b3065..330f8a0 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2002-09-20  Richard Williamson   <rjw at apple.com>
 
+        Assume triple click for selection if click count >= 3,
+        not == 3, as in OS X.
+        
+        * khtml/khtml_part.cpp:
+        (KHTMLPart::khtmlMousePressEvent):
+
+2002-09-20  Richard Williamson   <rjw at apple.com>
+
         Fixed crasher in findTextSlave.
         * khtml/rendering/render_text.cpp:
         (RenderText::findTextSlave):
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index c1b3065..330f8a0 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,13 @@
 2002-09-20  Richard Williamson   <rjw at apple.com>
 
+        Assume triple click for selection if click count >= 3,
+        not == 3, as in OS X.
+        
+        * khtml/khtml_part.cpp:
+        (KHTMLPart::khtmlMousePressEvent):
+
+2002-09-20  Richard Williamson   <rjw at apple.com>
+
         Fixed crasher in findTextSlave.
         * khtml/rendering/render_text.cpp:
         (RenderText::findTextSlave):
diff --git a/WebCore/khtml/khtml_part.cpp b/WebCore/khtml/khtml_part.cpp
index 6741386..f92bae7 100644
--- a/WebCore/khtml/khtml_part.cpp
+++ b/WebCore/khtml/khtml_part.cpp
@@ -4117,7 +4117,7 @@ void KHTMLPart::khtmlMousePressEvent( khtml::MousePressEvent *event )
         emitSelectionChanged();
         startAutoScroll();
     }
-    else if (event->qmouseEvent()->clickCount() == 3){
+    else if (event->qmouseEvent()->clickCount() >= 3){
         QMouseEvent *_mouse = event->qmouseEvent();
         DOM::Node innerNode = event->innerNode();
         

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list