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

eric at webkit.org eric at webkit.org
Wed Dec 22 11:49:16 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 8c89a26a886ee46a4d084f5919cca4ef6fc96d10
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Aug 8 06:32:23 2010 +0000

    2010-08-07  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
    
            Reviewed by Eric Seidel.
    
            [WML] Change getIDAttribute() with getIdAttribute()
            https://bugs.webkit.org/show_bug.cgi?id=43175
    
            Change getIDAttribute() with getIdAttribute() because function
            name was changed.
    
            * wml/WMLCardElement.cpp:
            (WebCore::WMLCardElement::findNamedCardInDocument): Change getIDAttribute() with getIdAttribute().
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64940 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index bf6eaf1..67ffc79 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-08-07  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
+
+        Reviewed by Eric Seidel.
+
+        [WML] Change getIDAttribute() with getIdAttribute()
+        https://bugs.webkit.org/show_bug.cgi?id=43175
+
+        Change getIDAttribute() with getIdAttribute() because function 
+        name was changed.
+
+        * wml/WMLCardElement.cpp:
+        (WebCore::WMLCardElement::findNamedCardInDocument): Change getIDAttribute() with getIdAttribute().
+
 2010-08-07  Mihai Parparita  <mihaip at chromium.org>
 
         Reviewed by Adam Barth.
diff --git a/WebCore/wml/WMLCardElement.cpp b/WebCore/wml/WMLCardElement.cpp
index 539dcd3..645d0fc 100644
--- a/WebCore/wml/WMLCardElement.cpp
+++ b/WebCore/wml/WMLCardElement.cpp
@@ -287,7 +287,7 @@ WMLCardElement* WMLCardElement::findNamedCardInDocument(Document* doc, const Str
 
     for (unsigned i = 0; i < length; ++i) {
         WMLCardElement* card = static_cast<WMLCardElement*>(nodeList->item(i));
-        if (card->getIDAttribute() != cardName)
+        if (card->getIdAttribute() != cardName)
             continue;
 
         return card;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list