| Index: third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp b/third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp
|
| index 804840a29aab6c5643ffb0045b85b9df5c49c16a..c2c9ed9535122fc0aafe3623ec7f887b0312e3e0 100644
|
| --- a/third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp
|
| @@ -66,7 +66,7 @@ void WordAwareIterator::advance()
|
|
|
| // If this is the first chunk that failed, save it in m_buffer before look ahead.
|
| if (m_buffer.isEmpty())
|
| - m_textIterator.copyTextTo(m_buffer);
|
| + m_textIterator.copyTextTo(&m_buffer);
|
|
|
| // Look ahead to next chunk. If it is whitespace or a break, we can use the previous stuff
|
| m_textIterator.advance();
|
| @@ -76,7 +76,7 @@ void WordAwareIterator::advance()
|
| }
|
|
|
| // Start gobbling chunks until we get to a suitable stopping point
|
| - m_textIterator.copyTextTo(m_buffer);
|
| + m_textIterator.copyTextTo(&m_buffer);
|
| }
|
| }
|
|
|
|
|