Index: Source/core/editing/SpellCheckRequester.cpp |
diff --git a/Source/core/editing/SpellCheckRequester.cpp b/Source/core/editing/SpellCheckRequester.cpp |
index f68d89e7e19f09cd32607f19e8565cf0b56d6aae..5bc37bfc34bd38c104fbc05256296bcaa642888b 100644 |
--- a/Source/core/editing/SpellCheckRequester.cpp |
+++ b/Source/core/editing/SpellCheckRequester.cpp |
@@ -71,7 +71,7 @@ PassRefPtr<SpellCheckRequest> SpellCheckRequest::create(TextCheckingTypeMask tex |
if (!text.length()) |
return PassRefPtr<SpellCheckRequest>(); |
- const Vector<DocumentMarker*>& markers = checkingRange->ownerDocument()->markers()->markersInRange(checkingRange.get(), DocumentMarker::Spelling | DocumentMarker::Grammar); |
+ const Vector<DocumentMarker*>& markers = checkingRange->ownerDocument().markers()->markersInRange(checkingRange.get(), DocumentMarker::Spelling | DocumentMarker::Grammar); |
Vector<uint32_t> hashes(markers.size()); |
Vector<unsigned> offsets(markers.size()); |
for (size_t i = 0; i < markers.size(); i++) { |