Changeset 71796 in webkit
- Timestamp:
- Nov 10, 2010, 9:20:24 PM (14 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r71795 r71796 1 2010-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 1 8 2010-11-10 Ned Holbrook <nholbrook@apple.com> 2 9 -
trunk/WebCore/platform/graphics/mac/ComplexTextControllerCoreText.cpp
r71795 r71796 55 55 m_coreTextIndicesVector.grow(m_glyphCount); 56 56 CTRunGetStringIndices(m_coreTextRun.get(), CFRangeMake(0, 0), m_coreTextIndicesVector.data()); 57 if (runRange.location) 57 if (runRange.location) { 58 58 for (unsigned i = 0; i < m_glyphCount; ++i) 59 59 m_coreTextIndicesVector[i] -= runRange.location; 60 } 60 61 m_coreTextIndices = m_coreTextIndicesVector.data(); 61 62 }
Note:
See TracChangeset
for help on using the changeset viewer.