Title: [115117] trunk/Source/WebCore
Revision
115117
Author
[email protected]
Date
2012-04-24 15:03:34 -0700 (Tue, 24 Apr 2012)

Log Message

Try to fix Qt build.

Not reviewed.

* css/StyleRule.h:
(WebCore::StyleRuleBase::StyleRuleBase):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (115116 => 115117)


--- trunk/Source/WebCore/ChangeLog	2012-04-24 21:58:42 UTC (rev 115116)
+++ trunk/Source/WebCore/ChangeLog	2012-04-24 22:03:34 UTC (rev 115117)
@@ -1,5 +1,14 @@
 2012-04-24  Antti Koivisto  <[email protected]>
 
+        Try to fix Qt build.
+
+        Not reviewed.
+
+        * css/StyleRule.h:
+        (WebCore::StyleRuleBase::StyleRuleBase):
+
+2012-04-24  Antti Koivisto  <[email protected]>
+
         Implement StyleRule copying
         https://bugs.webkit.org/show_bug.cgi?id=84752
 

Modified: trunk/Source/WebCore/css/StyleRule.h (115116 => 115117)


--- trunk/Source/WebCore/css/StyleRule.h	2012-04-24 21:58:42 UTC (rev 115116)
+++ trunk/Source/WebCore/css/StyleRule.h	2012-04-24 22:03:34 UTC (rev 115117)
@@ -74,7 +74,7 @@
 
 protected:
     StyleRuleBase(Type type, signed sourceLine = 0) : m_type(type), m_sourceLine(sourceLine) { }
-    StyleRuleBase(const StyleRuleBase& o) : m_type(o.m_type), m_sourceLine(o.m_sourceLine) { }
+    StyleRuleBase(const StyleRuleBase& o) : WTF::RefCountedBase(), m_type(o.m_type), m_sourceLine(o.m_sourceLine) { }
 
     ~StyleRuleBase() { }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to