Title: [92195] trunk/Source/WebCore
Revision
92195
Author
[email protected]
Date
2011-08-02 08:58:53 -0700 (Tue, 02 Aug 2011)

Log Message

[CSSRegions]Fix build after changeset 92106
https://bugs.webkit.org/show_bug.cgi?id=65539

Patch by Mihnea Ovidenie <[email protected]> on 2011-08-02
Reviewed by Adam Roben.

No new tests since it is just a build fix.

* css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (92194 => 92195)


--- trunk/Source/WebCore/ChangeLog	2011-08-02 15:54:35 UTC (rev 92194)
+++ trunk/Source/WebCore/ChangeLog	2011-08-02 15:58:53 UTC (rev 92195)
@@ -1,3 +1,15 @@
+2011-08-02  Mihnea Ovidenie  <[email protected]>
+
+        [CSSRegions]Fix build after changeset 92106
+        https://bugs.webkit.org/show_bug.cgi?id=65539
+
+        Reviewed by Adam Roben.
+
+        No new tests since it is just a build fix.
+
+        * css/CSSStyleSelector.cpp:
+        (WebCore::CSSStyleSelector::applyProperty):
+
 2011-08-01  Vsevolod Vlasov  <[email protected]>
 
         Web Inspector: [REGRESSION] Console evaluations leading to resource loading cause errors.

Modified: trunk/Source/WebCore/css/CSSStyleSelector.cpp (92194 => 92195)


--- trunk/Source/WebCore/css/CSSStyleSelector.cpp	2011-08-02 15:54:35 UTC (rev 92194)
+++ trunk/Source/WebCore/css/CSSStyleSelector.cpp	2011-08-02 15:58:53 UTC (rev 92195)
@@ -4023,7 +4023,7 @@
 #if ENABLE(CSS_REGIONS)
         CSSValueListInspector inspector = value;
         if (inspector.length() == 1 && inspector.first()->isPrimitiveValue()) {
-            CSSPrimitiveValue* contentValue = static_cast<CSSPrimitiveValue*>(inspector->first());
+            CSSPrimitiveValue* contentValue = static_cast<CSSPrimitiveValue*>(inspector.first());
             if (contentValue->primitiveType() == CSSPrimitiveValue::CSS_FROM_FLOW) {
                 m_style->setRegionThread(contentValue->getStringValue().impl());
                 return;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to