Title: [115120] trunk/Source/WebCore
Revision
115120
Author
an...@apple.com
Date
2012-04-24 15:14:22 -0700 (Tue, 24 Apr 2012)

Log Message

Another build fix.

Not reviewed.

* css/MediaList.cpp:
(WebCore::MediaQuerySet::MediaQuerySet):
* css/StylePropertySet.cpp:
(WebCore::StylePropertySet::StylePropertySet):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (115119 => 115120)


--- trunk/Source/WebCore/ChangeLog	2012-04-24 22:12:53 UTC (rev 115119)
+++ trunk/Source/WebCore/ChangeLog	2012-04-24 22:14:22 UTC (rev 115120)
@@ -1,5 +1,16 @@
 2012-04-24  Antti Koivisto  <an...@apple.com>
 
+        Another build fix.
+
+        Not reviewed.
+
+        * css/MediaList.cpp:
+        (WebCore::MediaQuerySet::MediaQuerySet):
+        * css/StylePropertySet.cpp:
+        (WebCore::StylePropertySet::StylePropertySet):
+
+2012-04-24  Antti Koivisto  <an...@apple.com>
+
         Try to fix Qt build.
 
         Not reviewed.

Modified: trunk/Source/WebCore/css/MediaList.cpp (115119 => 115120)


--- trunk/Source/WebCore/css/MediaList.cpp	2012-04-24 22:12:53 UTC (rev 115119)
+++ trunk/Source/WebCore/css/MediaList.cpp	2012-04-24 22:14:22 UTC (rev 115120)
@@ -83,7 +83,8 @@
 }
 
 MediaQuerySet::MediaQuerySet(const MediaQuerySet& o)
-    : m_fallbackToDescriptor(o.m_fallbackToDescriptor)
+    : RefCounted<MediaQuerySet>()
+    , m_fallbackToDescriptor(o.m_fallbackToDescriptor)
     , m_lastLine(o.m_lastLine)
     , m_queries(o.m_queries.size())
 {

Modified: trunk/Source/WebCore/css/StylePropertySet.cpp (115119 => 115120)


--- trunk/Source/WebCore/css/StylePropertySet.cpp	2012-04-24 22:12:53 UTC (rev 115119)
+++ trunk/Source/WebCore/css/StylePropertySet.cpp	2012-04-24 22:14:22 UTC (rev 115120)
@@ -82,7 +82,8 @@
 }
 
 StylePropertySet::StylePropertySet(const StylePropertySet& o)
-    : m_properties(o.m_properties)
+    : RefCounted<StylePropertySet>()
+    , m_properties(o.m_properties)
     , m_cssParserMode(o.m_cssParserMode)
     , m_ownsCSSOMWrapper(false)
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to