Bug 139823

Summary: Ref-ify TextIterator API.
Product: WebKit Reporter: Andreas Kling <kling>
Component: HTML EditingAssignee: Andreas Kling <kling>
Status: RESOLVED FIXED    
Severity: Normal CC: kling
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch koivisto: review+

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>