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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 12:50:36 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 3ea24e48e37734f9d04599963c06dd491e916a4d
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 31 15:58:47 2010 +0000

    2010-08-31  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
    
            Unreviewed build fix.
    
            [EFL] Build break for r66456
            https://bugs.webkit.org/post_bug.cgi
    
            Replace firstRectsForMarkers with renderedRectsForMarkers.
    
            * ewk/ewk_frame.cpp:
            (ewk_frame_text_matches_nth_pos_get):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66488 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/efl/ChangeLog b/WebKit/efl/ChangeLog
index 8399ce9..3f9bb54 100644
--- a/WebKit/efl/ChangeLog
+++ b/WebKit/efl/ChangeLog
@@ -1,3 +1,15 @@
+2010-08-31  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
+
+        Unreviewed build fix.
+
+        [EFL] Build break for r66456
+        https://bugs.webkit.org/post_bug.cgi
+
+        Replace firstRectsForMarkers with renderedRectsForMarkers.
+
+        * ewk/ewk_frame.cpp:
+        (ewk_frame_text_matches_nth_pos_get):
+
 2010-08-30  Kamil Blank  <k.blank at samsung.com>
 
         Reviewed by Adam Barth.
diff --git a/WebKit/efl/ewk/ewk_frame.cpp b/WebKit/efl/ewk/ewk_frame.cpp
index 539c500..d37d7ba 100644
--- a/WebKit/efl/ewk/ewk_frame.cpp
+++ b/WebKit/efl/ewk/ewk_frame.cpp
@@ -853,7 +853,7 @@ Eina_Bool ewk_frame_text_matches_nth_pos_get(Evas_Object* o, int n, int* x, int*
     EWK_FRAME_SD_GET_OR_RETURN(o, sd, EINA_FALSE);
     EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame, EINA_FALSE);
 
-    Vector<WebCore::IntRect> intRects = sd->frame->document()->markers()->firstRectsForMarkers(WebCore::DocumentMarker::TextMatch);
+    Vector<WebCore::IntRect> intRects = sd->frame->document()->markers()->renderedRectsForMarkers(WebCore::DocumentMarker::TextMatch);
 
     /* remove useless values */
     std::remove_if(intRects.begin(), intRects.end(), _ewk_frame_rect_is_negative_value);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list