* rendering/TextPainter.cpp: Used incorrect variable name
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@172156
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-07-28 Myles C. Maxfield <mmaxfield@apple.com>
+
+ Unreviewed build fix
+
+ * rendering/TextPainter.cpp: Used incorrect variable name
+
2014-08-06 Commit Queue <commit-queue@webkit.org>
Unreviewed, rolling out r172145.
context.drawEmphasisMarks(font, textRun, emphasisMark, point + IntSize(0, emphasisMarkOffset), from, to);
}
-static bool isEmptyShadow(const ShadowData* shadowPtr)
+static bool isEmptyShadow(const ShadowData* shadow)
{
- if (!shadowPtr)
+ if (!shadow)
return true;
return shadow->location() == IntPoint() && !shadow->radius();
}