diff options
Diffstat (limited to 'WebCore/html/HTMLTextAreaElement.h')
-rw-r--r-- | WebCore/html/HTMLTextAreaElement.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/html/HTMLTextAreaElement.h b/WebCore/html/HTMLTextAreaElement.h index f02ad65..f78386c 100644 --- a/WebCore/html/HTMLTextAreaElement.h +++ b/WebCore/html/HTMLTextAreaElement.h @@ -28,7 +28,7 @@ namespace WebCore { -class Selection; +class VisibleSelection; class HTMLTextAreaElement : public HTMLFormControlElementWithState { public: @@ -87,7 +87,7 @@ public: void setRows(int); void cacheSelection(int s, int e) { m_cachedSelectionStart = s; m_cachedSelectionEnd = e; }; - Selection selection() const; + VisibleSelection selection() const; virtual bool shouldUseInputMethod() const; |