| Index: Source/core/xml/XPathParser.cpp
|
| diff --git a/Source/core/xml/XPathParser.cpp b/Source/core/xml/XPathParser.cpp
|
| index d7339afdc403a3c649ef798425194e860ddd3996..d0fd2a78690db2e421159d8a13500472c80bd3ca 100644
|
| --- a/Source/core/xml/XPathParser.cpp
|
| +++ b/Source/core/xml/XPathParser.cpp
|
| @@ -464,7 +464,7 @@ bool Parser::expandQName(const String& qName, String& localName, String& namespa
|
| return true;
|
| }
|
|
|
| -Expression* Parser::parseStatement(const String& statement, PassRefPtr<XPathNSResolver> resolver, ExceptionState& es)
|
| +Expression* Parser::parseStatement(const String& statement, PassRefPtr<XPathNSResolver> resolver, ExceptionState& exceptionState)
|
| {
|
| reset(statement);
|
|
|
| @@ -498,9 +498,9 @@ Expression* Parser::parseStatement(const String& statement, PassRefPtr<XPathNSRe
|
| m_topExpr = 0;
|
|
|
| if (m_gotNamespaceError)
|
| - es.throwUninformativeAndGenericDOMException(NamespaceError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NamespaceError);
|
| else
|
| - es.throwUninformativeAndGenericDOMException(SyntaxError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(SyntaxError);
|
| return 0;
|
| }
|
|
|
|
|