[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

mitz at apple.com mitz at apple.com
Wed Dec 22 13:44:39 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 53b316db3866218b3b83bfa30407dc07a0422666
Author: mitz at apple.com <mitz at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 24 18:55:22 2010 +0000

    automaticSpellingCorrectionEnabled isn't updated.
    https://bugs.webkit.org/show_bug.cgi?id=46486
    <rdar://problem/8475212>
    
    Patch by Jia Pu <jpu at apple.com> on 2010-09-24
    Reviewed by Dan Bernstein.
    
    * WebView/WebView.mm:
    (+[WebView initialize]): Should update "automaticSpellingCorrectionEnabled"
      instead of "automaticTextReplacementEnabled".
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68280 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/mac/ChangeLog b/WebKit/mac/ChangeLog
index be476ca..d1cbb2e 100644
--- a/WebKit/mac/ChangeLog
+++ b/WebKit/mac/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-24  Jia Pu  <jpu at apple.com>
+
+        Reviewed by Dan Bernstein.
+
+        automaticSpellingCorrectionEnabled isn't updated.
+        https://bugs.webkit.org/show_bug.cgi?id=46486
+        <rdar://problem/8475212>
+
+        * WebView/WebView.mm:
+        (+[WebView initialize]): Should update "automaticSpellingCorrectionEnabled"
+          instead of "automaticTextReplacementEnabled".
+
 2010-09-23  Alexey Proskuryakov  <ap at apple.com>
 
         Reviewed by Darin Adler.
diff --git a/WebKit/mac/WebView/WebView.mm b/WebKit/mac/WebView/WebView.mm
index a0bdcce..a7d2bf2 100644
--- a/WebKit/mac/WebView/WebView.mm
+++ b/WebKit/mac/WebView/WebView.mm
@@ -2676,7 +2676,7 @@ static PassOwnPtr<Vector<String> > toStringVector(NSArray* patterns)
     if (![[NSUserDefaults standardUserDefaults] objectForKey:WebAutomaticTextReplacementEnabled])
         automaticTextReplacementEnabled = [NSSpellChecker isAutomaticTextReplacementEnabled];
     if (![[NSUserDefaults standardUserDefaults] objectForKey:WebAutomaticSpellingCorrectionEnabled])
-        automaticTextReplacementEnabled = [NSSpellChecker isAutomaticSpellingCorrectionEnabled];
+        automaticSpellingCorrectionEnabled = [NSSpellChecker isAutomaticSpellingCorrectionEnabled];
 #endif
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list