Title: [109092] trunk/Source/WebKit/qt
Revision
109092
Author
[email protected]
Date
2012-02-28 02:06:48 -0800 (Tue, 28 Feb 2012)

Log Message

Try to fix build.

Not reviewed.

* Api/qwebelement.cpp:
(QWebElement::styleProperty):

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/Api/qwebelement.cpp (109091 => 109092)


--- trunk/Source/WebKit/qt/Api/qwebelement.cpp	2012-02-28 09:38:51 UTC (rev 109091)
+++ trunk/Source/WebKit/qt/Api/qwebelement.cpp	2012-02-28 10:06:48 UTC (rev 109092)
@@ -865,11 +865,11 @@
             for (int i = rules->length(); i > 0; --i) {
                 CSSStyleRule* rule = static_cast<CSSStyleRule*>(rules->item(i - 1));
 
-                if (rule->declaration()->propertyIsImportant(propID))
-                    return rule->declaration()->getPropertyValue(propID);
+                if (rule->styleRule()->properties()->propertyIsImportant(propID))
+                    return rule->styleRule()->properties()->getPropertyValue(propID);
 
                 if (style->getPropertyValue(propID).isEmpty())
-                    style = rule->declaration();
+                    style = rule->styleRule()->properties();
             }
         }
 

Modified: trunk/Source/WebKit/qt/ChangeLog (109091 => 109092)


--- trunk/Source/WebKit/qt/ChangeLog	2012-02-28 09:38:51 UTC (rev 109091)
+++ trunk/Source/WebKit/qt/ChangeLog	2012-02-28 10:06:48 UTC (rev 109092)
@@ -1,3 +1,12 @@
+2012-02-28  Antti Koivisto  <[email protected]>
+
+        Try to fix build.
+
+        Not reviewed.
+
+        * Api/qwebelement.cpp:
+        (QWebElement::styleProperty):
+
 2012-02-26  Hajime Morrita  <[email protected]>
 
         Move ChromeClient::showContextMenu() to ContextMenuClient
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to