Title: [155052] trunk/Source/WebCore
Revision
155052
Author
[email protected]
Date
2013-09-04 11:35:53 -0700 (Wed, 04 Sep 2013)

Log Message

[iOS] Fix the build following <http://trac.webkit.org/changeset/154903>
(https://bugs.webkit.org/show_bug.cgi?id=120540)

* style/StyleResolveTree.cpp:
(WebCore::Style::resolveTree): Use address operator and dot-notation when
passing Element to CheckForVisibilityChangeOnRecalcStyle and calling
Element::renderStyle(), respectively.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (155051 => 155052)


--- trunk/Source/WebCore/ChangeLog	2013-09-04 18:32:10 UTC (rev 155051)
+++ trunk/Source/WebCore/ChangeLog	2013-09-04 18:35:53 UTC (rev 155052)
@@ -1,3 +1,13 @@
+2013-09-04  Daniel Bates  <[email protected]>
+
+        [iOS] Fix the build following <http://trac.webkit.org/changeset/154903>
+        (https://bugs.webkit.org/show_bug.cgi?id=120540)
+
+        * style/StyleResolveTree.cpp:
+        (WebCore::Style::resolveTree): Use address operator and dot-notation when
+        passing Element to CheckForVisibilityChangeOnRecalcStyle and calling
+        Element::renderStyle(), respectively.
+
 2013-09-04  Bem Jones-Bey  <[email protected]>
 
         Move logical dimension getters/setters to FloatingObject from RenderBlock

Modified: trunk/Source/WebCore/style/StyleResolveTree.cpp (155051 => 155052)


--- trunk/Source/WebCore/style/StyleResolveTree.cpp	2013-09-04 18:32:10 UTC (rev 155051)
+++ trunk/Source/WebCore/style/StyleResolveTree.cpp	2013-09-04 18:35:53 UTC (rev 155052)
@@ -746,7 +746,7 @@
     bool hasIndirectAdjacentRules = current.childrenAffectedByForwardPositionalRules();
 
 #if PLATFORM(IOS)
-    CheckForVisibilityChangeOnRecalcStyle checkForVisibilityChange(current, current->renderStyle());
+    CheckForVisibilityChangeOnRecalcStyle checkForVisibilityChange(&current, current.renderStyle());
 #endif
 
     if (change > NoChange || current.needsStyleRecalc())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to