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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:06:51 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 2e429d9eebf36ff671aa64a1a7ea1ca4929176ae
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 29 00:00:35 2003 +0000

    	Fixed: <rdar://problem/3464472>: REGRESSION: New CSS cursor support breaks style="cursor:default
    
            Reviewed by dave.
    
            * kwq/KWQWidget.mm:
            (QWidget::cursor): break after we hit a view that responds to documentCursor as we do in setCursor. Without breaking we were returning the cursor of the most super HTML view which is not what we want.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5293 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 587c44e..d1da2f0 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-10-28  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: <rdar://problem/3464472>: REGRESSION: New CSS cursor support breaks style="cursor:default
+
+        Reviewed by dave.
+
+        * kwq/KWQWidget.mm:
+        (QWidget::cursor): break after we hit a view that responds to documentCursor as we do in setCursor. Without breaking we were returning the cursor of the most super HTML view which is not what we want.
+
 2003-10-28  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by John.
diff --git a/WebCore/kwq/KWQWidget.mm b/WebCore/kwq/KWQWidget.mm
index 645fd41..38955a3 100644
--- a/WebCore/kwq/KWQWidget.mm
+++ b/WebCore/kwq/KWQWidget.mm
@@ -373,6 +373,7 @@ QCursor QWidget::cursor()
     while (view) {
         if ([view respondsToSelector:@selector(documentCursor)]) { 
             cursor = QCursor([view documentCursor]);
+            break;
         }
         view = [view superview];
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list