Changeset 131377 in webkit


Ignore:
Timestamp:
Oct 15, 2012 4:04:16 PM (12 years ago)
Author:
mitz@apple.com
Message:

Try to fix the build again after r131375.

  • platform/graphics/WidthIterator.h:

(WebCore::WidthIterator::shouldApplyFontTransforms): Removed the length check from here.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r131375 r131377  
     12012-10-15  Dan Bernstein  <mitz@apple.com>
     2
     3        Try to fix the build again after r131375.
     4
     5        * platform/graphics/WidthIterator.h:
     6        (WebCore::WidthIterator::shouldApplyFontTransforms): Removed the length check from here.
     7
    182012-10-15  Dan Bernstein  <mitz@apple.com>
    29
  • trunk/Source/WebCore/platform/graphics/WidthIterator.h

    r131375 r131377  
    9292    inline unsigned advanceInternal(TextIterator&, GlyphBuffer*);
    9393
    94     bool shouldApplyFontTransforms() const { return m_run.length() > 1 && (m_typesettingFeatures & (Kerning | Ligatures)); }
     94    bool shouldApplyFontTransforms() const { return m_typesettingFeatures & (Kerning | Ligatures); }
    9595
    9696    TypesettingFeatures m_typesettingFeatures;
Note: See TracChangeset for help on using the changeset viewer.