Title: [89756] trunk/Source/WebCore
Revision
89756
Author
[email protected]
Date
2011-06-25 16:32:35 -0700 (Sat, 25 Jun 2011)

Log Message

2011-06-25  Joseph Pecoraro  <[email protected]>

        Unreviewed build fix.

        Use UNUSED_PARAM on the correct param!

        * rendering/RenderView.cpp:
        (WebCore::RenderView::mapLocalToContainer):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (89755 => 89756)


--- trunk/Source/WebCore/ChangeLog	2011-06-25 23:10:49 UTC (rev 89755)
+++ trunk/Source/WebCore/ChangeLog	2011-06-25 23:32:35 UTC (rev 89756)
@@ -1,5 +1,14 @@
 2011-06-25  Joseph Pecoraro  <[email protected]>
 
+        Unreviewed build fix.
+
+        Use UNUSED_PARAM on the correct param!
+
+        * rendering/RenderView.cpp:
+        (WebCore::RenderView::mapLocalToContainer):
+
+2011-06-25  Joseph Pecoraro  <[email protected]>
+
         Reviewed by Simon Fraser.
 
         Inspector highlight rect is wrong for contents of transformed iframes

Modified: trunk/Source/WebCore/rendering/RenderView.cpp (89755 => 89756)


--- trunk/Source/WebCore/rendering/RenderView.cpp	2011-06-25 23:10:49 UTC (rev 89755)
+++ trunk/Source/WebCore/rendering/RenderView.cpp	2011-06-25 23:32:35 UTC (rev 89756)
@@ -142,7 +142,7 @@
     // then we should have found it by now.
     ASSERT_ARG(repaintContainer, !repaintContainer || repaintContainer == this);
     ASSERT(!wasFixed || *wasFixed == fixed);
-    UNUSED_PARAM(fixed);
+    UNUSED_PARAM(wasFixed);
 
     if (!repaintContainer && useTransforms && shouldUseTransformFromContainer(0)) {
         TransformationMatrix t;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to