Title: [105106] branches/safari-534.54-branch/Source/WebCore
Revision
105106
Author
[email protected]
Date
2012-01-16 16:36:13 -0800 (Mon, 16 Jan 2012)

Log Message

Fix <rdar://problem/10678175>.

* platform/mac/ScrollAnimatorMac.mm:
(WebCore::ScrollAnimatorMac::notityPositionChanged):

Modified Paths

Diff

Modified: branches/safari-534.54-branch/Source/WebCore/ChangeLog (105105 => 105106)


--- branches/safari-534.54-branch/Source/WebCore/ChangeLog	2012-01-17 00:25:44 UTC (rev 105105)
+++ branches/safari-534.54-branch/Source/WebCore/ChangeLog	2012-01-17 00:36:13 UTC (rev 105106)
@@ -1,3 +1,10 @@
+2012-01-16  Mark Rowe  <[email protected]>
+
+        Fix <rdar://problem/10678175>.
+
+        * platform/mac/ScrollAnimatorMac.mm:
+        (WebCore::ScrollAnimatorMac::notityPositionChanged):
+
 2012-01-04  Alexey Proskuryakov  <[email protected]>
 
         Reviewed by John Sullivan.

Modified: branches/safari-534.54-branch/Source/WebCore/platform/mac/ScrollAnimatorMac.mm (105105 => 105106)


--- branches/safari-534.54-branch/Source/WebCore/platform/mac/ScrollAnimatorMac.mm	2012-01-17 00:25:44 UTC (rev 105105)
+++ branches/safari-534.54-branch/Source/WebCore/platform/mac/ScrollAnimatorMac.mm	2012-01-17 00:36:13 UTC (rev 105106)
@@ -707,12 +707,12 @@
 
 void ScrollAnimatorMac::notityPositionChanged()
 {
-#if USE(WK_SCROLLBAR_PAINTER)
+#if USE(SCROLLBAR_PAINTER)
     // This function is called when a page is going into the page cache, but the page 
     // isn't really scrolling in that case. We should only pass the message on to the
     // ScrollbarPainterController when we're really scrolling on an active page.
     if (scrollableArea()->isOnActivePage())
-        wkContentAreaScrolled(m_scrollbarPainterController.get());
+        [m_scrollbarPainterController.get() contentAreaScrolled];
 #endif
     ScrollAnimator::notityPositionChanged();
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to