Changeset 107577 in webkit


Ignore:
Timestamp:
Feb 13, 2012 9:18:38 AM (12 years ago)
Author:
weinig@apple.com
Message:

Windows build fix.

  • UIProcess/win/WebPopupMenuProxyWin.cpp:

(WebKit::WebPopupMenuProxyWin::scrollToRevealSelection):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r107571 r107577  
     12012-02-13  Sam Weinig  <sam@webkit.org>
     2
     3        Windows build fix.
     4
     5        * UIProcess/win/WebPopupMenuProxyWin.cpp:
     6        (WebKit::WebPopupMenuProxyWin::scrollToRevealSelection):
     7
    182012-02-13  Zalan Bujtas  <zbujtas@gmail.com>
    29
  • trunk/Source/WebKit2/UIProcess/win/WebPopupMenuProxyWin.cpp

    r105756 r107577  
    947947
    948948    if (index < m_scrollOffset) {
    949         ScrollableArea::scrollToYOffsetWithoutAnimation(index);
     949        ScrollableArea::scrollToOffsetWithoutAnimation(VerticalScrollbar, index);
    950950        return true;
    951951    }
    952952
    953953    if (index >= m_scrollOffset + visibleItems()) {
    954         ScrollableArea::scrollToYOffsetWithoutAnimation(index - visibleItems() + 1);
     954        ScrollableArea::scrollToOffsetWithoutAnimation(VerticalScrollbar, index - visibleItems() + 1);
    955955        return true;
    956956    }
Note: See TracChangeset for help on using the changeset viewer.