[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

darin at apple.com darin at apple.com
Wed Dec 22 11:11:19 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit b9e8bc196aaaec246edb154df00b9a8cfe22879f
Author: darin at apple.com <darin at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jul 14 20:04:14 2010 +0000

    Another try at fixing the Tiger build.
    
    Avoid non-ASCII in source files to keep Tiger compiler happy.
    
    * WebView/WebRenderLayer.mm:
    (+[WebRenderLayer nameForLayer:]): Use %C for the non-ASCII characters.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63347 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/mac/ChangeLog b/WebKit/mac/ChangeLog
index ad51c92..dcf8485 100644
--- a/WebKit/mac/ChangeLog
+++ b/WebKit/mac/ChangeLog
@@ -1,3 +1,12 @@
+2010-07-14  Darin Adler  <darin at apple.com>
+
+        Another try at fixing the Tiger build.
+
+        Avoid non-ASCII in source files to keep Tiger compiler happy.
+
+        * WebView/WebRenderLayer.mm:
+        (+[WebRenderLayer nameForLayer:]): Use %C for the non-ASCII characters.
+
 2010-07-14  Sam Weinig  <sam at webkit.org>
 
         Reviewed by Darin Adler.
diff --git a/WebKit/mac/WebView/WebRenderLayer.mm b/WebKit/mac/WebView/WebRenderLayer.mm
index 1e3b27f..31fd6d5 100644
--- a/WebKit/mac/WebView/WebRenderLayer.mm
+++ b/WebKit/mac/WebView/WebRenderLayer.mm
@@ -53,9 +53,8 @@ using namespace WebCore;
     if (Node* node = renderer->node()) {
         if (node->isElementNode())
             name = [name stringByAppendingFormat:@" %@", (NSString *)static_cast<Element*>(node)->tagName()];
-
         if (node->hasID())
-            name = [name stringByAppendingFormat:@" \u2018%@\u2019", (NSString *)static_cast<Element*>(node)->getIdAttribute()];
+            name = [name stringByAppendingFormat:@" %C%@%C", 0x2018, (NSString *)static_cast<Element*>(node)->getIdAttribute(), 0x2019];
     }
 
     if (layer->isReflection())

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list