Commit 39e712d4 authored by kevino@webkit.org's avatar kevino@webkit.org

Build fix after changes in r54345.


git-svn-id: svn://svn.chromium.org/blink/trunk@54360 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 2eefc700
2010-02-04 Kevin Ollivier <kevino@theolliviers.com>
Build fix after changes in r54345.
* WebView.cpp:
(wxWebView::OnKeyEvents):
2010-02-04 Dan Bernstein <mitz@apple.com>
Reviewed by Simon Fraser.
......
......@@ -821,11 +821,11 @@ void wxWebView::OnKeyEvents(wxKeyEvent& event)
return;
case WXK_PAGEUP:
case WXK_NUMPAD_PAGEUP:
frame->view()->scrollBy(WebCore::IntSize(0, -frame->view()->visibleHeight() * WebCore::ScrollBar::minFractionToStepWhenPaging()));
frame->view()->scrollBy(WebCore::IntSize(0, -frame->view()->visibleHeight() * WebCore::Scrollbar::minFractionToStepWhenPaging()));
return;
case WXK_PAGEDOWN:
case WXK_NUMPAD_PAGEDOWN:
frame->view()->scrollBy(WebCore::IntSize(0, frame->view()->visibleHeight() * WebCore::ScrollBar::minFractionToStepWhenPaging()));
frame->view()->scrollBy(WebCore::IntSize(0, frame->view()->visibleHeight() * WebCore::Scrollbar::minFractionToStepWhenPaging()));
return;
//These we don't want turning into char events, stuff 'em
case WXK_ESCAPE:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment