summaryrefslogtreecommitdiffstats
path: root/WebCore/editing/TextCheckingHelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/editing/TextCheckingHelper.h')
-rw-r--r--WebCore/editing/TextCheckingHelper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/editing/TextCheckingHelper.h b/WebCore/editing/TextCheckingHelper.h
index 227530f..4dced05 100644
--- a/WebCore/editing/TextCheckingHelper.h
+++ b/WebCore/editing/TextCheckingHelper.h
@@ -55,11 +55,11 @@ public:
bool checkingRangeMatches(int location, int length) const { return location == checkingStart() && length == checkingLength(); }
bool isCheckingRangeCoveredBy(int location, int length) const { return location <= checkingStart() && location + length >= checkingStart() + checkingLength(); }
bool checkingRangeCovers(int location, int length) const { return location < checkingEnd() && location + length > checkingStart(); }
- PassRefPtr<Range> paragraphRange() const;
private:
void invalidateParagraphRangeValues();
PassRefPtr<Range> checkingRange() const { return m_checkingRange; }
+ PassRefPtr<Range> paragraphRange() const;
PassRefPtr<Range> offsetAsRange() const;
const String& text() const;