Title: [172156] trunk/Source/WebCore
Revision
172156
Author
mmaxfi...@apple.com
Date
2014-08-06 10:53:50 -0700 (Wed, 06 Aug 2014)

Log Message

Unreviewed build fix

* rendering/TextPainter.cpp: Used incorrect variable name

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (172155 => 172156)


--- trunk/Source/WebCore/ChangeLog	2014-08-06 17:46:37 UTC (rev 172155)
+++ trunk/Source/WebCore/ChangeLog	2014-08-06 17:53:50 UTC (rev 172156)
@@ -1,3 +1,9 @@
+2014-07-28  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+        Unreviewed build fix
+
+        * rendering/TextPainter.cpp: Used incorrect variable name
+ 
 2014-08-06  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r172145.

Modified: trunk/Source/WebCore/rendering/TextPainter.cpp (172155 => 172156)


--- trunk/Source/WebCore/rendering/TextPainter.cpp	2014-08-06 17:46:37 UTC (rev 172155)
+++ trunk/Source/WebCore/rendering/TextPainter.cpp	2014-08-06 17:53:50 UTC (rev 172156)
@@ -60,9 +60,9 @@
         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();
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to