| Index: Source/web/WebViewImpl.cpp
|
| diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
|
| index 5e2f87550859c5fc9913fc9a98807e382af7de04..ce32985efa99083e9930f47ea9daaff9c9de6622 100644
|
| --- a/Source/web/WebViewImpl.cpp
|
| +++ b/Source/web/WebViewImpl.cpp
|
| @@ -3166,7 +3166,7 @@ void WebViewImpl::spellingMarkers(WebVector<uint32_t>* markers)
|
| {
|
| Vector<uint32_t> result;
|
| for (LocalFrame* frame = m_page->mainFrame(); frame; frame = frame->tree().traverseNext()) {
|
| - const Vector<DocumentMarker*>& documentMarkers = frame->document()->markers()->markers();
|
| + const Vector<DocumentMarker*>& documentMarkers = frame->document()->markers().markers();
|
| for (size_t i = 0; i < documentMarkers.size(); ++i)
|
| result.append(documentMarkers[i]->hash());
|
| }
|
|
|