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

simon.fraser at apple.com simon.fraser at apple.com
Wed Dec 22 11:09:31 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d8eba34cfa728848e95188698b2a055c76faed39
Author: simon.fraser at apple.com <simon.fraser at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jul 14 00:59:08 2010 +0000

    2010-07-13  Simon Fraser  <simon.fraser at apple.com>
    
            Fix Tiger build.
    
            Avoid non-ASCII in souce files to keep Tiger compiler happy.
    
            * WebView/WebRenderLayer.mm:
            (+[WebRenderLayer nameForLayer:]):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63271 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/mac/ChangeLog b/WebKit/mac/ChangeLog
index 76f8602..c368b96 100644
--- a/WebKit/mac/ChangeLog
+++ b/WebKit/mac/ChangeLog
@@ -1,5 +1,14 @@
 2010-07-13  Simon Fraser  <simon.fraser at apple.com>
 
+        Fix Tiger build.
+
+        Avoid non-ASCII in souce files to keep Tiger compiler happy.
+
+        * WebView/WebRenderLayer.mm:
+        (+[WebRenderLayer nameForLayer:]):
+
+2010-07-13  Simon Fraser  <simon.fraser at apple.com>
+
         Reviewed by Dan Bernstein.
 
         <rdar://problem/8186963> Expose RenderLayer hierarchy via Obj-C for debugging.
diff --git a/WebKit/mac/WebView/WebRenderLayer.mm b/WebKit/mac/WebView/WebRenderLayer.mm
index f70738f..1e3b27f 100644
--- a/WebKit/mac/WebView/WebRenderLayer.mm
+++ b/WebKit/mac/WebView/WebRenderLayer.mm
@@ -55,7 +55,7 @@ using namespace WebCore;
             name = [name stringByAppendingFormat:@" %@", (NSString *)static_cast<Element*>(node)->tagName()];
 
         if (node->hasID())
-            name = [name stringByAppendingFormat:@" ‘%@’", (NSString *)static_cast<Element*>(node)->getIdAttribute()];
+            name = [name stringByAppendingFormat:@" \u2018%@\u2019", (NSString *)static_cast<Element*>(node)->getIdAttribute()];
     }
 
     if (layer->isReflection())

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list