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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:59:16 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0f12f1aa7d436c30f99d47aaf8c643bef452bcb0
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 12 23:24:25 2002 +0000

            * kwq/KWQCursor.mm: (QCursor::QCursor): Use nil instead of [NSCursor arrowCursor].
    	This will probably fix the performance regression.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2637 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 10c5044..bb827a5 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,10 @@
 2002-11-12  Darin Adler  <darin at apple.com>
 
+        * kwq/KWQCursor.mm: (QCursor::QCursor): Use nil instead of [NSCursor arrowCursor].
+	This will probably fix the performance regression.
+
+2002-11-12  Darin Adler  <darin at apple.com>
+
 	- fixed 3080250 -- Hands-free crash at wired.com in
 	KHTMLPart::slotChildStarted
 
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 10c5044..bb827a5 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,10 @@
 2002-11-12  Darin Adler  <darin at apple.com>
 
+        * kwq/KWQCursor.mm: (QCursor::QCursor): Use nil instead of [NSCursor arrowCursor].
+	This will probably fix the performance regression.
+
+2002-11-12  Darin Adler  <darin at apple.com>
+
 	- fixed 3080250 -- Hands-free crash at wired.com in
 	KHTMLPart::slotChildStarted
 
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 10c5044..bb827a5 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,10 @@
 2002-11-12  Darin Adler  <darin at apple.com>
 
+        * kwq/KWQCursor.mm: (QCursor::QCursor): Use nil instead of [NSCursor arrowCursor].
+	This will probably fix the performance regression.
+
+2002-11-12  Darin Adler  <darin at apple.com>
+
 	- fixed 3080250 -- Hands-free crash at wired.com in
 	KHTMLPart::slotChildStarted
 
diff --git a/WebCore/kwq/KWQCursor.mm b/WebCore/kwq/KWQCursor.mm
index a657534..82710cc 100644
--- a/WebCore/kwq/KWQCursor.mm
+++ b/WebCore/kwq/KWQCursor.mm
@@ -33,7 +33,7 @@ const QCursor Qt::sizeHorCursor;
 const QCursor Qt::sizeVerCursor;
 
 QCursor::QCursor()
-    : cursor([[NSCursor arrowCursor] retain])
+    : cursor(nil)
 {
 }
 
@@ -43,7 +43,7 @@ QCursor::QCursor(NSCursor *cur)
 }
 
 QCursor::QCursor(const QPixmap &pixmap)
-    : cursor([[NSCursor arrowCursor] retain])
+    : cursor(nil)
 {
     ERROR("not yet implemented");
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list