Title: [109030] trunk/Source/WebCore
Revision
109030
Author
sulli...@apple.com
Date
2012-02-27 15:32:01 -0800 (Mon, 27 Feb 2012)

Log Message

Build fix (on Lion at least).

* dom/Attr.cpp:
(WebCore::Attr::childrenChanged):
Removed names of unused parameters.
        
* dom/ContainerNode.cpp:
(WebCore::ContainerNode::childrenChanged):
Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (109029 => 109030)


--- trunk/Source/WebCore/ChangeLog	2012-02-27 23:22:32 UTC (rev 109029)
+++ trunk/Source/WebCore/ChangeLog	2012-02-27 23:32:01 UTC (rev 109030)
@@ -1,3 +1,15 @@
+2012-02-27  John Sullivan  <sulli...@apple.com>
+
+        Build fix (on Lion at least).
+
+        * dom/Attr.cpp:
+        (WebCore::Attr::childrenChanged):
+        Removed names of unused parameters.
+        
+        * dom/ContainerNode.cpp:
+        (WebCore::ContainerNode::childrenChanged):
+        Ditto.
+
 2012-02-27  Kentaro Hara  <hara...@chromium.org>
 
         Remove [ConstructorParameters] from IDL files that have [Constructor]

Modified: trunk/Source/WebCore/dom/Attr.cpp (109029 => 109030)


--- trunk/Source/WebCore/dom/Attr.cpp	2012-02-27 23:22:32 UTC (rev 109029)
+++ trunk/Source/WebCore/dom/Attr.cpp	2012-02-27 23:32:01 UTC (rev 109030)
@@ -167,7 +167,7 @@
     }
 }
 
-void Attr::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
+void Attr::childrenChanged(bool, Node*, Node*, int)
 {
     if (m_ignoreChildrenChanged > 0)
         return;

Modified: trunk/Source/WebCore/dom/ContainerNode.cpp (109029 => 109030)


--- trunk/Source/WebCore/dom/ContainerNode.cpp	2012-02-27 23:22:32 UTC (rev 109029)
+++ trunk/Source/WebCore/dom/ContainerNode.cpp	2012-02-27 23:32:01 UTC (rev 109030)
@@ -828,7 +828,7 @@
     }
 }
 
-void ContainerNode::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
+void ContainerNode::childrenChanged(bool changedByParser, Node*, Node*, int childCountDelta)
 {
     if (!changedByParser && childCountDelta)
         document()->updateRangesAfterChildrenChanged(this);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to