Bug 139823 - Ref-ify TextIterator API.
Summary: Ref-ify TextIterator API.
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: HTML Editing (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Andreas Kling
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-19 11:12 PST by Andreas Kling
Modified: 2014-12-19 11:48 PST (History)
1 user (show)

See Also:


Attachments
Patch (15.37 KB, patch)
2014-12-19 11:14 PST, Andreas Kling
koivisto: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Andreas Kling 2014-12-19 11:12:14 PST
Ref-ify TextIterator API.
Comment 1 Andreas Kling 2014-12-19 11:14:10 PST
Created attachment 243560 [details]
Patch
Comment 2 Antti Koivisto 2014-12-19 11:16:44 PST
Comment on attachment 243560 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=243560&action=review

> Source/WebCore/editing/TextIterator.cpp:1406
> -    RefPtr<Range> r = m_underlyingIterator.range();
> +    Ref<Range> r = m_underlyingIterator.range();

please fix this to use a proper variable name
Comment 3 Andreas Kling 2014-12-19 11:48:14 PST
Committed r177588: <http://trac.webkit.org/changeset/177588>