[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:44:24 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9be1f7436b28b55e4cc80d7d1d9e5c44cdcec4a5
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jun 8 15:01:28 2004 +0000

            Reviewed by me
    
            * khtml/editing/jsediting.cpp:
            (DOM::EditorCommand::): Stray capital letter in "selectAll" command static
            initializer prevented the command from ever working since the command
            strings are lower-cased when trying to find a match, but not when they
            are inserted into the dictionary. This is a one character change to make
            the string "selectall" in the initializer.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6790 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 6a744d3..9403454 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2004-06-08  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by me
+
+        * khtml/editing/jsediting.cpp:
+        (DOM::EditorCommand::): Stray capital letter in "selectAll" command static
+        initializer prevented the command from ever working since the command
+        strings are lower-cased when trying to find a match, but not when they
+        are inserted into the dictionary. This is a one character change to make
+        the string "selectall" in the initializer.
+
 2004-06-07  Trey Matteson  <trey at apple.com>
 
 	WebCore will now generate a default drag image when an element serves as a drag
diff --git a/WebCore/khtml/editing/jsediting.cpp b/WebCore/khtml/editing/jsediting.cpp
index 8037859..60a2946 100644
--- a/WebCore/khtml/editing/jsediting.cpp
+++ b/WebCore/khtml/editing/jsediting.cpp
@@ -572,7 +572,7 @@ void JSEditor::initDict()
         // saveas command (not supported)
 
         // selectall command (supported)
-        { "selectAll", {
+        { "selectall", {
             execCommandSelectAll,
             enabled,
             NoIndeterm,

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list