Changeset 71796 in webkit


Ignore:
Timestamp:
Nov 10, 2010, 9:20:24 PM (14 years ago)
Author:
mitz@apple.com
Message:

Style fix I said I’d make then forgot to make.

  • platform/graphics/mac/ComplexTextControllerCoreText.cpp:

(WebCore::ComplexTextController::ComplexTextRun::ComplexTextRun):

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r71795 r71796  
     12010-11-10  Dan Bernstein  <mitz@apple.com>
     2
     3        Style fix I said I’d make then forgot to make.
     4
     5        * platform/graphics/mac/ComplexTextControllerCoreText.cpp:
     6        (WebCore::ComplexTextController::ComplexTextRun::ComplexTextRun):
     7
    182010-11-10  Ned Holbrook  <nholbrook@apple.com>
    29
  • trunk/WebCore/platform/graphics/mac/ComplexTextControllerCoreText.cpp

    r71795 r71796  
    5555        m_coreTextIndicesVector.grow(m_glyphCount);
    5656        CTRunGetStringIndices(m_coreTextRun.get(), CFRangeMake(0, 0), m_coreTextIndicesVector.data());
    57         if (runRange.location)
     57        if (runRange.location) {
    5858            for (unsigned i = 0; i < m_glyphCount; ++i)
    5959                m_coreTextIndicesVector[i] -= runRange.location;
     60        }
    6061        m_coreTextIndices = m_coreTextIndicesVector.data();
    6162    }
Note: See TracChangeset for help on using the changeset viewer.