Changeset 73316 in webkit


Ignore:
Timestamp:
Dec 3, 2010 3:52:46 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-12-03 Alex Bredariol Grilo <abgrilo@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):
Location:
trunk/WebKit/efl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/efl/ChangeLog

    r73088 r73316  
     12010-12-03  Alex Bredariol Grilo  <abgrilo@profusion.mobi>
     2
     3        Reviewed by Andreas Kling.
     4
     5        Update usage of Eina_Iterator due to EFL changes.
     6        https://bugs.webkit.org/show_bug.cgi?id=50457
     7
     8        * ewk/ewk_tiled_model.c:
     9        (ewk_tile_updates_process):
     10
    1112010-12-01  Jia Pu  <jpu@apple.com>
    212
  • trunk/WebKit/efl/ewk/ewk_tiled_model.c

    r72579 r73316  
    448448    } else if (t->updates) {
    449449        Eina_Iterator *itr = eina_tiler_iterator_new(t->updates);
    450         Eina_Rectangle r = {0, 0, 0, 0};
     450        Eina_Rectangle *r;
    451451        if (!itr) {
    452452            CRITICAL("could not create tiler iterator!");
     
    454454        }
    455455        EINA_ITERATOR_FOREACH(itr, r)
    456             cb((void *)data, t, &r);
     456            cb((void *)data, t, r);
    457457        eina_iterator_free(itr);
    458458    }
Note: See TracChangeset for help on using the changeset viewer.