Commit 59c2ca25 authored by kevino@webkit.org's avatar kevino@webkit.org

Reviewed by Kevin Ollivier.

ScrollView copy and paste typo fix.
        
https://bugs.webkit.org/show_bug.cgi?id=25445


git-svn-id: svn://svn.chromium.org/blink/trunk@42935 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent b721f14b
2009-04-28 Kevin Watters <kevinwatters@gmail.com>
Reviewed by Kevin Ollivier.
ScrollView copy and paste typo fix.
https://bugs.webkit.org/show_bug.cgi?id=25445
* platform/wx/ScrollViewWx.cpp:
(WebCore::ScrollView::platformSetScrollbarModes):
2009-04-28 John Sullivan <sullivan@apple.com> 2009-04-28 John Sullivan <sullivan@apple.com>
<rdar://problem/6820221> REGRESSION: 2-byte character names of images are displayed as %-encoded ASCII <rdar://problem/6820221> REGRESSION: 2-byte character names of images are displayed as %-encoded ASCII
...@@ -291,8 +291,8 @@ void ScrollView::platformSetScrollbarModes() ...@@ -291,8 +291,8 @@ void ScrollView::platformSetScrollbarModes()
needsAdjust = true; needsAdjust = true;
} }
if (m_data->vScrollbarMode != horizontalScrollbarMode() ) { if (m_data->vScrollbarMode != verticalScrollbarMode() ) {
m_data->vScrollbarMode = horizontalScrollbarMode(); m_data->vScrollbarMode = verticalScrollbarMode();
needsAdjust = true; needsAdjust = true;
} }
......
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