Title: [97486] trunk/Source/WebKit/chromium
Revision
97486
Author
[email protected]
Date
2011-10-14 11:41:37 -0700 (Fri, 14 Oct 2011)

Log Message

Chromium Mac build fix after r97478.

* src/mac/WebSubstringUtil.mm:
(WebKit::WebSubstringUtil::attributedSubstringInRange):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (97485 => 97486)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-10-14 18:36:31 UTC (rev 97485)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-10-14 18:41:37 UTC (rev 97486)
@@ -1,3 +1,10 @@
+2011-10-14  Ryosuke Niwa  <[email protected]>
+
+        Chromium Mac build fix after r97478.
+
+        * src/mac/WebSubstringUtil.mm:
+        (WebKit::WebSubstringUtil::attributedSubstringInRange):
+
 2011-10-12  Ryosuke Niwa  <[email protected]>
 
         Make the interface of locationAndLengthFromRange and rangeFromLocationAndLength consistent

Modified: trunk/Source/WebKit/chromium/src/mac/WebSubstringUtil.mm (97485 => 97486)


--- trunk/Source/WebKit/chromium/src/mac/WebSubstringUtil.mm	2011-10-14 18:36:31 UTC (rev 97485)
+++ trunk/Source/WebKit/chromium/src/mac/WebSubstringUtil.mm	2011-10-14 18:41:37 UTC (rev 97486)
@@ -59,7 +59,7 @@
     if (frame->view()->needsLayout())
         frame->view()->layout();
 
-    RefPtr<Range> range(TextIterator::rangeFromLocationAndLength(frame->selection()->rootEditableElementOrDocumentElement(), selectionRoot, location, length));
+    RefPtr<Range> range(TextIterator::rangeFromLocationAndLength(frame->selection()->rootEditableElementOrDocumentElement(), location, length));
     if (!range)
         return nil;
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to