[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:10:55 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 36c084752960dc00f39b3c25a1ede7e5ce031a79
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon May 6 22:56:55 2002 +0000

            Fixed width measurement regression.  We lost the final ROUND_TO_INT
            in the width measurement funtion after the move from WebCore.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1100 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index a4e96d9..43b317d 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,13 @@
 2002-05-06  Richard J. Williamson  <rjw at apple.com>
 
+        Fixed width measurement regression.  We lost the final ROUND_TO_INT
+        in the width measurement funtion after the move from WebCore.
+        
+	* WebCoreSupport.subproj/IFCachedTextRenderer.m:
+	(-[IFCachedTextRenderer widthForCharacters:length:]):
+
+2002-05-06  Richard J. Williamson  <rjw at apple.com>
+
         Changes to support dhtml.
         
 	* WebView.subproj/IFWebView.mm:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index a4e96d9..43b317d 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-05-06  Richard J. Williamson  <rjw at apple.com>
 
+        Fixed width measurement regression.  We lost the final ROUND_TO_INT
+        in the width measurement funtion after the move from WebCore.
+        
+	* WebCoreSupport.subproj/IFCachedTextRenderer.m:
+	(-[IFCachedTextRenderer widthForCharacters:length:]):
+
+2002-05-06  Richard J. Williamson  <rjw at apple.com>
+
         Changes to support dhtml.
         
 	* WebView.subproj/IFWebView.mm:
diff --git a/WebKit/WebCoreSupport.subproj/IFCachedTextRenderer.m b/WebKit/WebCoreSupport.subproj/IFCachedTextRenderer.m
index a2e069a..0c092d9 100644
--- a/WebKit/WebCoreSupport.subproj/IFCachedTextRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/IFCachedTextRenderer.m
@@ -497,7 +497,7 @@ static void ConvertCharactersToGlyphs(ATSStyleGroupPtr styleGroup, const UniChar
         }
     }
     
-    return totalWidth;
+    return ROUND_TO_INT(totalWidth);
 }
 
 - (void)drawString:(NSString *)string inRect:(NSRect)rect withColor:(NSColor *)color paragraphStyle:(NSParagraphStyle *)style

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list