[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

cfleizach at apple.com cfleizach at apple.com
Thu Apr 8 02:19:36 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 248974a8066f61c74f4149f6709220145a7a7bfc
Author: cfleizach at apple.com <cfleizach at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Mar 11 19:28:09 2010 +0000

    Fixing GTK. No review.
    
    support lang attribute on <option> elements
    https://bugs.webkit.org/show_bug.cgi?id=36021
    
    We don't need to cast to AccessibilityRenderObject to get language().
    
    * accessibility/gtk/AccessibilityObjectWrapperAtk.cpp:
    (webkit_accessible_document_get_locale):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55849 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 173920a..f5a4259 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,17 @@
 2010-03-11  Chris Fleizach  <cfleizach at apple.com>
 
+        Fixing GTK. No review.
+
+        support lang attribute on <option> elements
+        https://bugs.webkit.org/show_bug.cgi?id=36021
+ 
+        We don't need to cast to AccessibilityRenderObject to get language().
+
+        * accessibility/gtk/AccessibilityObjectWrapperAtk.cpp:
+        (webkit_accessible_document_get_locale):
+
+2010-03-11  Chris Fleizach  <cfleizach at apple.com>
+
         Reviewed by Darin Adler.
 
         support lang attribute on <option> elements
diff --git a/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp b/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp
index bff5ac4..c5bc01d 100644
--- a/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp
+++ b/WebCore/accessibility/gtk/AccessibilityObjectWrapperAtk.cpp
@@ -1568,7 +1568,7 @@ static const gchar* webkit_accessible_document_get_locale(AtkDocument* document)
 {
 
     // TODO: Should we fall back on lang xml:lang when the following comes up empty?
-    String language = static_cast<AccessibilityRenderObject*>(core(document))->language();
+    String language = core(document)->language();
     if (!language.isEmpty())
         return returnString(language);
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list