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

yurys at chromium.org yurys at chromium.org
Wed Dec 22 12:58:34 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit f4242355a7a710754c0d819a9e0255c1ba4125c2
Author: yurys at chromium.org <yurys at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 3 11:48:34 2010 +0000

    2010-09-03  Yury Semikhatsky  <yurys at chromium.org>
    
            Unreviewed. Fix Qt compilation.
    
            * html/HTMLEmbedElement.cpp:
            (WebCore::HTMLEmbedElement::parametersForPlugin):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66722 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 4f39336..511d27d 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,10 @@
+2010-09-03  Yury Semikhatsky  <yurys at chromium.org>
+
+        Unreviewed. Fix Qt compilation.
+
+        * html/HTMLEmbedElement.cpp:
+        (WebCore::HTMLEmbedElement::parametersForPlugin):
+
 2010-09-03  Hironori Bono  <hbono at chromium.org>
 
         Reviewed by Kent Tamura.
diff --git a/WebCore/html/HTMLEmbedElement.cpp b/WebCore/html/HTMLEmbedElement.cpp
index a0ee7bd..e88ee81 100644
--- a/WebCore/html/HTMLEmbedElement.cpp
+++ b/WebCore/html/HTMLEmbedElement.cpp
@@ -128,8 +128,8 @@ void HTMLEmbedElement::parametersForPlugin(Vector<String>& paramNames, Vector<St
 
     for (unsigned i = 0; i < attributes->length(); ++i) {
         Attribute* it = attributes->attributeItem(i);
-        paramNames.append(it->localName());
-        paramValues.append(it->value());
+        paramNames.append(it->localName().string());
+        paramValues.append(it->value().string());
     }
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list