[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:39:33 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f1841b82293e25f48403177776a5fe0aa81c2f36
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 17 22:50:03 2002 +0000

    	Fix bug where image documents were broken.
    
            * WebCoreSupport.subproj/WebImageRenderer.m:
            (-[WebImageRenderer drawClippedToValidInRect:fromRect:]): loadStatus of 0
    	means the whole image is ready, not 0 scan lines; so check > 0, not >= 0.
    
            * WebKit.pbproj/project.pbxproj: Let Project Builder be the boss of me.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2077 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 2fcd6eb..760f8a2 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2002-09-17  Darin Adler  <darin at apple.com>
+
+	Fix bug where image documents were broken.
+
+        * WebCoreSupport.subproj/WebImageRenderer.m:
+        (-[WebImageRenderer drawClippedToValidInRect:fromRect:]): loadStatus of 0
+	means the whole image is ready, not 0 scan lines; so check > 0, not >= 0.
+
+        * WebKit.pbproj/project.pbxproj: Let Project Builder be the boss of me.
+
 2002-09-17  Richard Williamson   <rjw at apple.com>
 
         * History.subproj/WebHistory.h:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 2fcd6eb..760f8a2 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,13 @@
+2002-09-17  Darin Adler  <darin at apple.com>
+
+	Fix bug where image documents were broken.
+
+        * WebCoreSupport.subproj/WebImageRenderer.m:
+        (-[WebImageRenderer drawClippedToValidInRect:fromRect:]): loadStatus of 0
+	means the whole image is ready, not 0 scan lines; so check > 0, not >= 0.
+
+        * WebKit.pbproj/project.pbxproj: Let Project Builder be the boss of me.
+
 2002-09-17  Richard Williamson   <rjw at apple.com>
 
         * History.subproj/WebHistory.h:
diff --git a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
index 6057da7..f1274d1 100644
--- a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
@@ -149,7 +149,7 @@ static NSMutableArray *activeImageRenderers;
 
 - (void)drawClippedToValidInRect:(NSRect)ir fromRect:(NSRect)fr
 {
-    if (loadStatus >= 0) {
+    if (loadStatus > 0) {
         int pixelsHigh = [[[self representations] objectAtIndex:0] pixelsHigh];
         if (pixelsHigh > loadStatus) {
             // Figure out how much of the image is OK to draw.
diff --git a/WebKit/WebKit.pbproj/project.pbxproj b/WebKit/WebKit.pbproj/project.pbxproj
index 4b7103b..06cd0fa 100644
--- a/WebKit/WebKit.pbproj/project.pbxproj
+++ b/WebKit/WebKit.pbproj/project.pbxproj
@@ -72,6 +72,7 @@
 				F58C8A07025BD3BC018635CA,
 				F531DDFF02F0C36F018635CA,
 			);
+			hasScannedForEncodings = 1;
 			isa = PBXProject;
 			knownRegions = (
 				English,

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list