diff options
Diffstat (limited to 'WebCore/platform/text/AtomicString.cpp')
-rw-r--r-- | WebCore/platform/text/AtomicString.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/platform/text/AtomicString.cpp b/WebCore/platform/text/AtomicString.cpp index d85f5ee..409439e 100644 --- a/WebCore/platform/text/AtomicString.cpp +++ b/WebCore/platform/text/AtomicString.cpp @@ -206,7 +206,7 @@ PassRefPtr<StringImpl> AtomicString::add(const UChar* s) PassRefPtr<StringImpl> AtomicString::add(StringImpl* r) { - if (!r || r->m_inTable) + if (!r || r->inTable()) return r; if (r->length() == 0) @@ -214,7 +214,7 @@ PassRefPtr<StringImpl> AtomicString::add(StringImpl* r) StringImpl* result = *stringTable().add(r).first; if (result == r) - r->m_inTable = true; + r->setInTable(); return result; } |