summaryrefslogtreecommitdiffstats
path: root/WebCore/page/PositionError.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/PositionError.h')
-rw-r--r--WebCore/page/PositionError.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/page/PositionError.h b/WebCore/page/PositionError.h
index c309061..f6f56f0 100644
--- a/WebCore/page/PositionError.h
+++ b/WebCore/page/PositionError.h
@@ -46,7 +46,7 @@ public:
ErrorCode code() const { return m_code; }
const String& message() const { return m_message; }
void setIsFatal(bool isFatal) { m_isFatal = isFatal; }
- bool isFatal() { return m_isFatal; }
+ bool isFatal() const { return m_isFatal; }
private:
PositionError(ErrorCode code, const String& message)