Title: [112700] trunk/Source/WebCore
Revision
112700
Author
[email protected]
Date
2012-03-30 11:32:18 -0700 (Fri, 30 Mar 2012)

Log Message

Build fix after r112699.

* css/StylePropertySet.cpp:
(WebCore::StylePropertySet::findPropertyWithId):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (112699 => 112700)


--- trunk/Source/WebCore/ChangeLog	2012-03-30 18:27:16 UTC (rev 112699)
+++ trunk/Source/WebCore/ChangeLog	2012-03-30 18:32:18 UTC (rev 112700)
@@ -1,5 +1,12 @@
 2012-03-30  Ryosuke Niwa  <[email protected]>
 
+        Build fix after r112699.
+
+        * css/StylePropertySet.cpp:
+        (WebCore::StylePropertySet::findPropertyWithId):
+
+2012-03-30  Ryosuke Niwa  <[email protected]>
+
         Add a compile assert for the size of CSSProperty
         https://bugs.webkit.org/show_bug.cgi?id=82756
 

Modified: trunk/Source/WebCore/css/StylePropertySet.cpp (112699 => 112700)


--- trunk/Source/WebCore/css/StylePropertySet.cpp	2012-03-30 18:27:16 UTC (rev 112699)
+++ trunk/Source/WebCore/css/StylePropertySet.cpp	2012-03-30 18:32:18 UTC (rev 112700)
@@ -872,7 +872,7 @@
 const CSSProperty* StylePropertySet::findPropertyWithId(int propertyID) const
 {
     for (int n = m_properties.size() - 1 ; n >= 0; --n) {
-        if (propertyID == m_properties[n].m_id)
+        if (propertyID == m_properties[n].id())
             return &m_properties[n];
     }
     return 0;
@@ -881,7 +881,7 @@
 CSSProperty* StylePropertySet::findPropertyWithId(int propertyID)
 {
     for (int n = m_properties.size() - 1 ; n >= 0; --n) {
-        if (propertyID == m_properties[n].m_id)
+        if (propertyID == m_properties[n].id())
             return &m_properties[n];
     }
     return 0;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to