[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:10:18 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f173a676f3a3338d21f9713ba98d9fba57e1b78d
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Nov 8 01:08:39 2003 +0000

    	Fixed: <rdar://problem/3020196>: links with href="" don't show hand cursor when you mouse over them
    
            Reviewed by darin.
    
            * khtml/khtmlview.cpp:
            (KHTMLView::viewportMouseMoveEvent): check if the URL on the event is non-NULL, not if it is non-empty
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5426 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index d7e4f10..8561bbf 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-11-07  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: <rdar://problem/3020196>: links with href="" don't show hand cursor when you mouse over them
+
+        Reviewed by darin.
+
+        * khtml/khtmlview.cpp:
+        (KHTMLView::viewportMouseMoveEvent): check if the URL on the event is non-NULL, not if it is non-empty
+
 2003-11-07  Richard Williamson   <rjw at apple.com>
 
 	Fixed 3477067.  Use our case unicode conversion routines.
diff --git a/WebCore/khtml/khtmlview.cpp b/WebCore/khtml/khtmlview.cpp
index dd7f17e..d786e9a 100644
--- a/WebCore/khtml/khtmlview.cpp
+++ b/WebCore/khtml/khtmlview.cpp
@@ -812,7 +812,7 @@ void KHTMLView::viewportMouseMoveEvent( QMouseEvent * _mouse )
         if ( d->mousePressed && m_part->hasSelection() )
 	    // during selection, use an IBeam no matter what we're over
 	    c = KCursor::ibeamCursor();
-        else if ( (mev.url.length() || isSubmitImage(mev.innerNode.handle()))
+        else if ( (!mev.url.isNull() || isSubmitImage(mev.innerNode.handle()))
                   && m_part->settings()->changeCursor() )
             c = m_part->urlCursor();
         else if ( !mev.innerNode.isNull()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list