Changeset 78627 in webkit


Ignore:
Timestamp:
Feb 15, 2011 3:25:45 PM (13 years ago)
Author:
ddkilzer@apple.com
Message:

<http://webkit.org/b/54485> Fix spelling of -inProgramaticScroll

Reviewed by Darin Adler.

  • WebView/WebDynamicScrollBarsView.h:
  • WebView/WebDynamicScrollBarsView.mm:

(-[WebDynamicScrollBarsView inProgrammaticScroll]): Renamed from
-inProgramaticScroll.

  • WebView/WebHTMLView.mm:

(-[WebHTMLView _frameOrBoundsChanged]): Corrected method name.

Location:
trunk/Source/WebKit/mac
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/mac/ChangeLog

    r78620 r78627  
     12011-02-15  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/54485> Fix spelling of -inProgramaticScroll
     4
     5        Reviewed by Darin Adler.
     6
     7        * WebView/WebDynamicScrollBarsView.h:
     8        * WebView/WebDynamicScrollBarsView.mm:
     9        (-[WebDynamicScrollBarsView inProgrammaticScroll]): Renamed from
     10        -inProgramaticScroll.
     11        * WebView/WebHTMLView.mm:
     12        (-[WebHTMLView _frameOrBoundsChanged]): Corrected method name.
     13
    1142011-02-15  Kenneth Russell  <kbr@google.com>
    215
  • trunk/Source/WebKit/mac/WebView/WebDynamicScrollBarsView.h

    r72852 r78627  
    6464// NOTE: As opposed to other places in the code, programmatically moving the
    6565// scrollers from inside this class should not fire JS events.
    66 - (BOOL)inProgramaticScroll;
     66- (BOOL)inProgrammaticScroll;
    6767@end
  • trunk/Source/WebKit/mac/WebView/WebDynamicScrollBarsView.mm

    r77257 r78627  
    161161}
    162162
    163 - (BOOL)inProgramaticScroll
     163- (BOOL)inProgrammaticScroll
    164164{
    165165    return _private->inProgrammaticScroll;
  • trunk/Source/WebKit/mac/WebView/WebHTMLView.mm

    r78024 r78627  
    12401240
    12411241    NSPoint origin = [[self superview] bounds].origin;
    1242     if (!NSEqualPoints(_private->lastScrollPosition, origin) && ![scrollView inProgramaticScroll]) {
     1242    if (!NSEqualPoints(_private->lastScrollPosition, origin) && ![scrollView inProgrammaticScroll]) {
    12431243        if (Frame* coreFrame = core([self _frame])) {
    12441244            if (FrameView* coreView = coreFrame->view()) {
Note: See TracChangeset for help on using the changeset viewer.