[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:47:12 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 63763367ae8abd41c5a8cb8ccaff28ae88115130
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 4 23:46:30 2002 +0000

    	- fixed 3060140 -- REGRESSION: frames of animated gif drawn in wrong position.
    
    	I got the "fromRect" and "toRect" parameters backwards when I made the changes
    	to fix bug 3050810.
    
            * WebCoreSupport.subproj/WebImageRenderer.m: (-[WebImageRenderer nextFrame:]):
    	Reverse targetRect and imageRect.
    
            * WebKit.pbproj/project.pbxproj: Mark some new files as UTF-8 because Project
    	Builder asked me to.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2253 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 7116c0b..3fe0014 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,18 @@
 2002-10-04  Darin Adler  <darin at apple.com>
 
+	- fixed 3060140 -- REGRESSION: frames of animated gif drawn in wrong position.
+
+	I got the "fromRect" and "toRect" parameters backwards when I made the changes
+	to fix bug 3050810.
+
+        * WebCoreSupport.subproj/WebImageRenderer.m: (-[WebImageRenderer nextFrame:]):
+	Reverse targetRect and imageRect.
+
+        * WebKit.pbproj/project.pbxproj: Mark some new files as UTF-8 because Project
+	Builder asked me to.
+
+2002-10-04  Darin Adler  <darin at apple.com>
+
         * Panels.subproj/WebPanelCookieAcceptHandler.h: Removed.
         * Panels.subproj/WebPanelCookieAcceptHandler.m: Removed.
 
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 7116c0b..3fe0014 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,18 @@
 2002-10-04  Darin Adler  <darin at apple.com>
 
+	- fixed 3060140 -- REGRESSION: frames of animated gif drawn in wrong position.
+
+	I got the "fromRect" and "toRect" parameters backwards when I made the changes
+	to fix bug 3050810.
+
+        * WebCoreSupport.subproj/WebImageRenderer.m: (-[WebImageRenderer nextFrame:]):
+	Reverse targetRect and imageRect.
+
+        * WebKit.pbproj/project.pbxproj: Mark some new files as UTF-8 because Project
+	Builder asked me to.
+
+2002-10-04  Darin Adler  <darin at apple.com>
+
         * Panels.subproj/WebPanelCookieAcceptHandler.h: Removed.
         * Panels.subproj/WebPanelCookieAcceptHandler.m: Removed.
 
diff --git a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
index f1274d1..0161f43 100644
--- a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
@@ -208,7 +208,7 @@ static NSMutableArray *activeImageRenderers;
      if (![[[self representations] objectAtIndex:0] hasAlpha]) {
         if ([frameView canDraw]) {
             [frameView lockFocus];
-            [self drawClippedToValidInRect:imageRect fromRect:targetRect];
+            [self drawClippedToValidInRect:targetRect fromRect:imageRect];
             [frameView unlockFocus];
         }
         if (!animationFinished) {
diff --git a/WebKit/WebKit.pbproj/project.pbxproj b/WebKit/WebKit.pbproj/project.pbxproj
index 4dea03c..f329a3c 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,
@@ -2108,12 +2109,14 @@
 			};
 		};
 		F57FB8C4034E180101A80180 = {
+			fileEncoding = 4;
 			isa = PBXFileReference;
 			name = WebDebugDOMNode.h;
 			path = WebView.subproj/WebDebugDOMNode.h;
 			refType = 2;
 		};
 		F57FB8C5034E180101A80180 = {
+			fileEncoding = 4;
 			isa = PBXFileReference;
 			name = WebDebugDOMNode.m;
 			path = WebView.subproj/WebDebugDOMNode.m;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list