Ignore:
Timestamp:
Sep 28, 2013, 10:42:35 PM (12 years ago)
Author:
[email protected]
Message:

Unreviewed build fix after r156613 for ports enabling CSS3_TEXT.

  • rendering/RenderBlockLineLayout.cpp:

(WebCore::requiresIndent): Use the RenderStyle reference.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/rendering/RenderBlockLineLayout.cpp

    r156613 r156614  
    797797        shouldIndentText = IndentText;
    798798#if ENABLE(CSS3_TEXT)
    799     else if (isAfterHardLineBreak && style->textIndentLine() == TextIndentEachLine)
     799    else if (isAfterHardLineBreak && style.textIndentLine() == TextIndentEachLine)
    800800        shouldIndentText = IndentText;
    801801
    802     if (style->textIndentType() == TextIndentHanging)
     802    if (style.textIndentType() == TextIndentHanging)
    803803        shouldIndentText = shouldIndentText == IndentText ? DoNotIndentText : IndentText;
    804804#else
Note: See TracChangeset for help on using the changeset viewer.