[Webkit-unassigned] [Bug 36602] [chromium] linux: prefer the "hinting" fontconfig preference.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 25 09:50:35 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=36602


David Levin <levin at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #51641|review?                     |review+, commit-queue-
               Flag|                            |




--- Comment #3 from David Levin <levin at chromium.org>  2010-03-25 09:50:35 PST ---
(From update of attachment 51641)

> diff --git a/WebCore/platform/graphics/chromium/FontPlatformDataLinux.cpp b/WebCore/platform/graphics/chromium/FontPlatformDataLinux.cpp
> +    default:
> +        paint->setHinting((SkPaint::Hinting) m_style.hintStyle);

Please use C++ style casting like this: 
  paint->setHinting(static_cast<SkPaint::Hinting>(m_style.hintStyle));

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list