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

barraclough at apple.com barraclough at apple.com
Wed Dec 22 11:51:47 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit c9e77d92b870fd5c78c988f9b2f5b4e1edc82405
Author: barraclough at apple.com <barraclough at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 10 02:58:42 2010 +0000

    Speculative chromium build fix.
    
    * platform/graphics/chromium/FontCacheChromiumWin.cpp:
    (WebCore::charactersAreAllASCII):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65039 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 118d65f..2ffcb40 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,12 @@
 2010-08-09  Gavin Barraclough  <barraclough at apple.com>
 
+        Speculative chromium build fix.
+
+        * platform/graphics/chromium/FontCacheChromiumWin.cpp:
+        (WebCore::charactersAreAllASCII):
+
+2010-08-09  Gavin Barraclough  <barraclough at apple.com>
+
         Qt build fix III.
 
         * css/CSSSelector.cpp:
diff --git a/WebCore/platform/graphics/chromium/FontCacheChromiumWin.cpp b/WebCore/platform/graphics/chromium/FontCacheChromiumWin.cpp
index 6f46f7e..8ba37c6 100644
--- a/WebCore/platform/graphics/chromium/FontCacheChromiumWin.cpp
+++ b/WebCore/platform/graphics/chromium/FontCacheChromiumWin.cpp
@@ -58,7 +58,7 @@ void FontCache::platformInit()
 // FIXME: consider adding to WebKit String class
 static bool charactersAreAllASCII(const String& s)
 {
-    return charactersAreAllASCII(s.characters(), s.length());
+    return WTF::charactersAreAllASCII(s.characters(), s.length());
 }
 
 // When asked for a CJK font with a native name under a non-CJK locale or

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list