[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

bfulgham at webkit.org bfulgham at webkit.org
Thu Apr 8 00:43:15 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 8103369c5666b979879ba416d56d6d36a8427cb8
Author: bfulgham at webkit.org <bfulgham at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Dec 19 02:04:24 2009 +0000

    Build fix, no review.
    
    * platform/graphics/win/FontCacheWin.cpp:
    (WebCore::FontCache::createFontPlatformData): Correct my typo
      on the CG build.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52371 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 733590f..e782794 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,11 @@
+2009-12-18  Brent Fulgham  <bfulgham at webkit.org>
+
+        Build fix, no review.
+
+        * platform/graphics/win/FontCacheWin.cpp:
+        (WebCore::FontCache::createFontPlatformData): Correct my typo
+          on the CG build.
+
 2009-12-18  Dumitru Daniliuc  <dumi at chromium.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/platform/graphics/win/FontCacheWin.cpp b/WebCore/platform/graphics/win/FontCacheWin.cpp
index 366fa54..5e61ef3 100644
--- a/WebCore/platform/graphics/win/FontCacheWin.cpp
+++ b/WebCore/platform/graphics/win/FontCacheWin.cpp
@@ -520,11 +520,11 @@ FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontD
 #if PLATFORM(CG)
     bool canCreateCGFontWithLOGFONT = wkCanCreateCGFontWithLOGFONT();
 #else
-    bool canCreateCGFontWIthLOGFONT = true;
+    bool canCreateCGFontWithLOGFONT = true;
 #endif
     LONG weight = adjustedGDIFontWeight(toGDIFontWeight(fontDescription.weight()), family);
     HFONT hfont = createGDIFont(family, weight, fontDescription.italic(),
-                                fontDescription.computedPixelSize() * (useGDI ? 1 : 32), useGDI && canCreateCGFontWIthLOGFONT);
+                                fontDescription.computedPixelSize() * (useGDI ? 1 : 32), useGDI && canCreateCGFontWithLOGFONT);
 
     if (!hfont)
         return 0;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list