[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:56:58 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit f75f706e9a32161aaac8a9508e9e55e96958eac3
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Nov 4 18:27:29 2002 +0000
WebKit:
* WebCoreSupport.subproj/WebImageRenderer.m: (-[WebImageRenderer dealloc]):
Replaced a useless call to stopAnimation with a couple of asserts.
WebBrowser:
* DownloadRow.m: (-[DownloadRow dealloc]): Replaced a useless timer invalidate with an assert.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2550 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index bcdd1ff..4afa97f 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-04 Darin Adler <darin at apple.com>
+
+ * WebCoreSupport.subproj/WebImageRenderer.m: (-[WebImageRenderer dealloc]):
+ Replaced a useless call to stopAnimation with a couple of asserts.
+
2002-11-04 John Sullivan <sullivan at apple.com>
* Resources/url_icon.tiff:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index bcdd1ff..4afa97f 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,8 @@
+2002-11-04 Darin Adler <darin at apple.com>
+
+ * WebCoreSupport.subproj/WebImageRenderer.m: (-[WebImageRenderer dealloc]):
+ Replaced a useless call to stopAnimation with a couple of asserts.
+
2002-11-04 John Sullivan <sullivan at apple.com>
* Resources/url_icon.tiff:
diff --git a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
index 3d3a25e..7fb4f8c 100644
--- a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
@@ -151,7 +151,8 @@ static NSMutableArray *activeImageRenderers;
- (void)dealloc
{
- [self stopAnimation];
+ ASSERT(frameTimer == nil);
+ ASSERT(frameView == nil);
[patternColor release];
[super dealloc];
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list