Title: [173942] trunk/Source/WebCore
Revision
173942
Author
[email protected]
Date
2014-09-24 19:46:25 -0700 (Wed, 24 Sep 2014)

Log Message

Unreviewed build fix after r173941.

Rename shadow to m_shadow.

* rendering/TextPainter.h:
(WebCore::ShadowApplier::shadowIsCompletelyCoveredByText):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (173941 => 173942)


--- trunk/Source/WebCore/ChangeLog	2014-09-25 02:32:06 UTC (rev 173941)
+++ trunk/Source/WebCore/ChangeLog	2014-09-25 02:46:25 UTC (rev 173942)
@@ -1,3 +1,12 @@
+2014-09-24  Christophe Dumez  <[email protected]>
+
+        Unreviewed build fix after r173941.
+
+        Rename shadow to m_shadow.
+
+        * rendering/TextPainter.h:
+        (WebCore::ShadowApplier::shadowIsCompletelyCoveredByText):
+
 2014-09-22  Myles C. Maxfield  <[email protected]>
 
         REGRESSION: Text with a zero offset, zero blur shadow vanishes

Modified: trunk/Source/WebCore/rendering/TextPainter.h (173941 => 173942)


--- trunk/Source/WebCore/rendering/TextPainter.h	2014-09-25 02:32:06 UTC (rev 173941)
+++ trunk/Source/WebCore/rendering/TextPainter.h	2014-09-25 02:46:25 UTC (rev 173942)
@@ -90,7 +90,7 @@
 
     bool shadowIsCompletelyCoveredByText(bool textIsOpaque)
     {
-        return textIsOpaque && shadow && m_shadow->location() == IntPoint() && !m_shadow->radius();
+        return textIsOpaque && m_shadow && m_shadow->location() == IntPoint() && !m_shadow->radius();
     }
 
     FloatSize m_extraOffset;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to