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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 17:59:21 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 971862e48892bf7aaeeb456be190d6d6718537b0
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 3 23:52:46 2010 +0000

    2010-12-03  Alex Bredariol Grilo  <abgrilo at profusion.mobi>
    
            Reviewed by Andreas Kling.
    
            Update usage of Eina_Iterator due to EFL changes.
            https://bugs.webkit.org/show_bug.cgi?id=50457
    
            * ewk/ewk_tiled_model.c:
            (ewk_tile_updates_process):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73316 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/efl/ChangeLog b/WebKit/efl/ChangeLog
index 8b21f5e..cfb2f11 100644
--- a/WebKit/efl/ChangeLog
+++ b/WebKit/efl/ChangeLog
@@ -1,3 +1,13 @@
+2010-12-03  Alex Bredariol Grilo  <abgrilo at profusion.mobi>
+
+        Reviewed by Andreas Kling.
+
+        Update usage of Eina_Iterator due to EFL changes.
+        https://bugs.webkit.org/show_bug.cgi?id=50457
+
+        * ewk/ewk_tiled_model.c:
+        (ewk_tile_updates_process):
+
 2010-12-01  Jia Pu  <jpu at apple.com>
 
         Reviewed by Darin Adler.
diff --git a/WebKit/efl/ewk/ewk_tiled_model.c b/WebKit/efl/ewk/ewk_tiled_model.c
index 641b93e..4b81a15 100644
--- a/WebKit/efl/ewk/ewk_tiled_model.c
+++ b/WebKit/efl/ewk/ewk_tiled_model.c
@@ -447,13 +447,13 @@ void ewk_tile_updates_process(Ewk_Tile *t, void (*cb)(void *data, Ewk_Tile *t, c
 #endif
     } else if (t->updates) {
         Eina_Iterator *itr = eina_tiler_iterator_new(t->updates);
-        Eina_Rectangle r = {0, 0, 0, 0};
+        Eina_Rectangle *r;
         if (!itr) {
             CRITICAL("could not create tiler iterator!");
             return;
         }
         EINA_ITERATOR_FOREACH(itr, r)
-            cb((void *)data, t, &r);
+            cb((void *)data, t, r);
         eina_iterator_free(itr);
     }
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list