[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:21:45 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0a084093f4bd6b0b1b23e64d20d4dcc2a1fa3e1d
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jun 27 15:25:44 2002 +0000

            Implemented auto scrolling.
    
            * WebView.subproj/IFHTMLView.mm:
            (-[IFHTMLView mouseDragged:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1452 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index a7f0749..fe931ec 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,12 @@
 2002-06-27  Richard Williamson  <rjw at apple.com>
 
+        Implemented auto scrolling.
+        
+        * WebView.subproj/IFHTMLView.mm:
+        (-[IFHTMLView mouseDragged:]):
+
+2002-06-27  Richard Williamson  <rjw at apple.com>
+
         Implement selectAll.
         
         * WebView.subproj/IFHTMLView.mm:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index a7f0749..fe931ec 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,12 @@
 2002-06-27  Richard Williamson  <rjw at apple.com>
 
+        Implemented auto scrolling.
+        
+        * WebView.subproj/IFHTMLView.mm:
+        (-[IFHTMLView mouseDragged:]):
+
+2002-06-27  Richard Williamson  <rjw at apple.com>
+
         Implement selectAll.
         
         * WebView.subproj/IFHTMLView.mm:
diff --git a/WebKit/WebView.subproj/IFHTMLView.mm b/WebKit/WebView.subproj/IFHTMLView.mm
index c41eb24..25488dc 100644
--- a/WebKit/WebView.subproj/IFHTMLView.mm
+++ b/WebKit/WebView.subproj/IFHTMLView.mm
@@ -504,6 +504,8 @@
 {
     NSPoint p = [event locationInWindow];
     
+    [self autoscroll: event];
+    
     QMouseEvent kEvent(QEvent::MouseMove, QPoint((int)p.x, (int)p.y), Qt::LeftButton, Qt::LeftButton);
     KHTMLView *widget = _private->widget;
     if (widget) {
diff --git a/WebKit/WebView.subproj/WebHTMLView.m b/WebKit/WebView.subproj/WebHTMLView.m
index c41eb24..25488dc 100644
--- a/WebKit/WebView.subproj/WebHTMLView.m
+++ b/WebKit/WebView.subproj/WebHTMLView.m
@@ -504,6 +504,8 @@
 {
     NSPoint p = [event locationInWindow];
     
+    [self autoscroll: event];
+    
     QMouseEvent kEvent(QEvent::MouseMove, QPoint((int)p.x, (int)p.y), Qt::LeftButton, Qt::LeftButton);
     KHTMLView *widget = _private->widget;
     if (widget) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list