Title: [184725] trunk/Source/WebCore
Revision
184725
Author
mattba...@apple.com
Date
2015-05-21 11:32:58 -0700 (Thu, 21 May 2015)

Log Message

Unreviewed build fix.

* svg/SVGAnimateElementBase.cpp:
(WebCore::propertyTypesAreConsistent): should be type.properties, not type.properties().

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (184724 => 184725)


--- trunk/Source/WebCore/ChangeLog	2015-05-21 18:24:59 UTC (rev 184724)
+++ trunk/Source/WebCore/ChangeLog	2015-05-21 18:32:58 UTC (rev 184725)
@@ -1,3 +1,10 @@
+2015-05-21  Matt Baker  <mattba...@apple.com>
+
+        Unreviewed build fix.
+
+        * svg/SVGAnimateElementBase.cpp:
+        (WebCore::propertyTypesAreConsistent): should be type.properties, not type.properties().
+
 2015-05-21  Xabier Rodriguez Calvar  <calva...@igalia.com> and Youenn Fablet <youenn.fab...@crf.canon.fr>
 
         [Streams API] Remove ReadableStreamReader closed promise internal slot

Modified: trunk/Source/WebCore/svg/SVGAnimateElementBase.cpp (184724 => 184725)


--- trunk/Source/WebCore/svg/SVGAnimateElementBase.cpp	2015-05-21 18:24:59 UTC (rev 184724)
+++ trunk/Source/WebCore/svg/SVGAnimateElementBase.cpp	2015-05-21 18:32:58 UTC (rev 184725)
@@ -172,7 +172,7 @@
 static inline bool propertyTypesAreConsistent(AnimatedPropertyType expectedPropertyType, const SVGElementAnimatedPropertyList& animatedTypes)
 {
     for (auto& type : animatedTypes) {
-        for (auto& property : type.properties()) {
+        for (auto& property : type.properties) {
             if (expectedPropertyType != property->animatedPropertyType()) {
                 // This is the only allowed inconsistency. SVGAnimatedAngleAnimator handles both SVGAnimatedAngle & SVGAnimatedEnumeration for markers orient attribute.
                 if (expectedPropertyType == AnimatedAngle && property->animatedPropertyType() == AnimatedEnumeration)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to