Changeset 68280 in webkit


Ignore:
Timestamp:
Sep 24, 2010 11:55:22 AM (14 years ago)
Author:
mitz@apple.com
Message:

automaticSpellingCorrectionEnabled isn't updated.
https://bugs.webkit.org/show_bug.cgi?id=46486
<rdar://problem/8475212>

Patch by Jia Pu <jpu@apple.com> on 2010-09-24
Reviewed by Dan Bernstein.

  • WebView/WebView.mm:

(+[WebView initialize]): Should update "automaticSpellingCorrectionEnabled"

instead of "automaticTextReplacementEnabled".

Location:
trunk/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/mac/ChangeLog

    r68266 r68280  
     12010-09-24  Jia Pu  <jpu@apple.com>
     2
     3        Reviewed by Dan Bernstein.
     4
     5        automaticSpellingCorrectionEnabled isn't updated.
     6        https://bugs.webkit.org/show_bug.cgi?id=46486
     7        <rdar://problem/8475212>
     8
     9        * WebView/WebView.mm:
     10        (+[WebView initialize]): Should update "automaticSpellingCorrectionEnabled"
     11          instead of "automaticTextReplacementEnabled".
     12
    1132010-09-23  Alexey Proskuryakov  <ap@apple.com>
    214
  • trunk/WebKit/mac/WebView/WebView.mm

    r68228 r68280  
    26772677        automaticTextReplacementEnabled = [NSSpellChecker isAutomaticTextReplacementEnabled];
    26782678    if (![[NSUserDefaults standardUserDefaults] objectForKey:WebAutomaticSpellingCorrectionEnabled])
    2679         automaticTextReplacementEnabled = [NSSpellChecker isAutomaticSpellingCorrectionEnabled];
     2679        automaticSpellingCorrectionEnabled = [NSSpellChecker isAutomaticSpellingCorrectionEnabled];
    26802680#endif
    26812681}
Note: See TracChangeset for help on using the changeset viewer.