[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

andersca at apple.com andersca at apple.com
Fri Jan 21 14:55:42 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit 244ee6d317864f007d0efe5c6a2d71418bccdc96
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 4 22:49:35 2011 +0000

    Don't use macros for the key names.
    
    Reviewed by Darin Adler.
    
    * UIProcess/mac/TextCheckerMac.mm:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75012 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 86cb135..010b068 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,5 +1,13 @@
 2011-01-04  Anders Carlsson  <andersca at apple.com>
 
+        Reviewed by Darin Adler.
+
+        Don't use macros for the key names.
+
+        * UIProcess/mac/TextCheckerMac.mm:
+
+2011-01-04  Anders Carlsson  <andersca at apple.com>
+
         Reviewed by Sam Weinig.
 
         Send over text checker state to the web process
diff --git a/WebKit2/UIProcess/mac/TextCheckerMac.mm b/WebKit2/UIProcess/mac/TextCheckerMac.mm
index 5de1577..b244579 100644
--- a/WebKit2/UIProcess/mac/TextCheckerMac.mm
+++ b/WebKit2/UIProcess/mac/TextCheckerMac.mm
@@ -27,9 +27,9 @@
 
 #include "TextCheckerState.h"
 
-#define WebAutomaticSpellingCorrectionEnabled @"WebAutomaticSpellingCorrectionEnabled"
-#define WebContinuousSpellCheckingEnabled @"WebContinuousSpellCheckingEnabled"
-#define WebGrammarCheckingEnabled @"WebGrammarCheckingEnabled"
+static const NSString * const WebAutomaticSpellingCorrectionEnabled = @"WebAutomaticSpellingCorrectionEnabled";
+static const NSString * const WebContinuousSpellCheckingEnabled = @"WebContinuousSpellCheckingEnabled";
+static const NSString * const WebGrammarCheckingEnabled = @"WebGrammarCheckingEnabled";
 
 namespace WebKit {
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list