Title: [180475] trunk/Source/WebCore
Revision
180475
Author
[email protected]
Date
2015-02-20 19:44:33 -0800 (Fri, 20 Feb 2015)

Log Message

[Gtk] Unreviewed build fix.

* platform/ScrollAnimatorNone.cpp:
(WebCore::ScrollAnimatorNone::ScrollAnimatorNone): Forget to update two
uses of ScrollableArea.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (180474 => 180475)


--- trunk/Source/WebCore/ChangeLog	2015-02-21 03:34:09 UTC (rev 180474)
+++ trunk/Source/WebCore/ChangeLog	2015-02-21 03:44:33 UTC (rev 180475)
@@ -1,5 +1,13 @@
 2015-02-20  Brent Fulgham  <[email protected]>
 
+        [Gtk] Unreviewed build fix.
+
+        * platform/ScrollAnimatorNone.cpp:
+        (WebCore::ScrollAnimatorNone::ScrollAnimatorNone): Forget to update two
+        uses of ScrollableArea.
+
+2015-02-20  Brent Fulgham  <[email protected]>
+
         Scrollbars and ScrollAnimators must always have a ScrollableArea
         https://bugs.webkit.org/show_bug.cgi?id=141855
 

Modified: trunk/Source/WebCore/platform/ScrollAnimatorNone.cpp (180474 => 180475)


--- trunk/Source/WebCore/platform/ScrollAnimatorNone.cpp	2015-02-21 03:34:09 UTC (rev 180474)
+++ trunk/Source/WebCore/platform/ScrollAnimatorNone.cpp	2015-02-21 03:44:33 UTC (rev 180475)
@@ -371,8 +371,8 @@
 
 ScrollAnimatorNone::ScrollAnimatorNone(ScrollableArea& scrollableArea)
     : ScrollAnimator(scrollableArea)
-    , m_horizontalData(this, &m_currentPosX, scrollableArea->visibleWidth())
-    , m_verticalData(this, &m_currentPosY, scrollableArea->visibleHeight())
+    , m_horizontalData(this, &m_currentPosX, scrollableArea.visibleWidth())
+    , m_verticalData(this, &m_currentPosY, scrollableArea.visibleHeight())
     , m_startTime(0)
 #if USE(REQUEST_ANIMATION_FRAME_TIMER)
     , m_animationTimer(*this, &ScrollAnimatorNone::requestAnimationTimerFired)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to