提交 ced1d964 编写于 作者: A Adam Barth

Merge pull request #159 from abarth/fix_build

Fix Release builds
......@@ -805,7 +805,7 @@ struct CurveAlongY {
* was doing everything along the X axis; CurveAlongY just flips the
* coordinates around.
*/
template <class Curve> static void strokeWavyTextDecorationInternal(GraphicsContext* context, FloatPoint p1, FloatPoint p2, float strokeThickness)
template <class Curve> static void strokeWavyTextDecorationInternal(GraphicsContext* context, FloatPoint p1, FloatPoint p2, float strokeThickness)
{
ASSERT(Curve::y(p1) == Curve::y(p2)); // verify that this is indeed axis-aligned
......@@ -1054,8 +1054,8 @@ void InlineTextBox::paintCompositionBackgrounds(GraphicsContext* pt, const Float
}
} else {
unsigned start; // TODO(ianh): if we expose this function, provide a way to let authors set this
unsigned end; // TODO(ianh): if we expose this function, provide a way to let authors set this
unsigned start = 0; // TODO(ianh): if we expose this function, provide a way to let authors set this
unsigned end = 0; // TODO(ianh): if we expose this function, provide a way to let authors set this
paintSingleCompositionBackgroundRun(pt, boxOrigin, style, font, RenderTheme::theme().platformDefaultCompositionBackgroundColor(), start, end);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册