[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:57:51 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 6e5e6d5f7502106c75d0ad7f56b6fdad4d819d14
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Nov 8 01:14:27 2002 +0000

            Don't stop animating unless we're the last referee. (3083281)
    
            * kwq/KWQPixmap.mm:
            (QPixmap::~QPixmap):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2590 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 05deb60..f1b555c 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-11-07  Richard Williamson  <rjw at apple.com>
+
+        Don't stop animating unless we're the last referee. (3083281)
+        
+        * kwq/KWQPixmap.mm:
+        (QPixmap::~QPixmap):
+
 === Alexander-31 ===
 
 2002-11-06  Richard Williamson  <rjw at apple.com>
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 05deb60..f1b555c 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2002-11-07  Richard Williamson  <rjw at apple.com>
+
+        Don't stop animating unless we're the last referee. (3083281)
+        
+        * kwq/KWQPixmap.mm:
+        (QPixmap::~QPixmap):
+
 === Alexander-31 ===
 
 2002-11-06  Richard Williamson  <rjw at apple.com>
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 05deb60..f1b555c 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2002-11-07  Richard Williamson  <rjw at apple.com>
+
+        Don't stop animating unless we're the last referee. (3083281)
+        
+        * kwq/KWQPixmap.mm:
+        (QPixmap::~QPixmap):
+
 === Alexander-31 ===
 
 2002-11-06  Richard Williamson  <rjw at apple.com>
diff --git a/WebCore/kwq/KWQPixmap.mm b/WebCore/kwq/KWQPixmap.mm
index d0bc0b5..0ef3d78 100644
--- a/WebCore/kwq/KWQPixmap.mm
+++ b/WebCore/kwq/KWQPixmap.mm
@@ -61,7 +61,8 @@ QPixmap::QPixmap(const QPixmap &copyFrom) : QPaintDevice(copyFrom)
 
 QPixmap::~QPixmap()
 {
-    [imageRenderer stopAnimation];
+    if ([imageRenderer retainCount] == 1)
+        [imageRenderer stopAnimation];
     [imageRenderer release];
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list