| Index: Source/core/xml/XPathParser.cpp
|
| diff --git a/Source/core/xml/XPathParser.cpp b/Source/core/xml/XPathParser.cpp
|
| index 3fe9b350ccfa1ebf966496d0a726356557710c59..0772e3adfa93bb6e1cdae2b2b344bddf82555f5a 100644
|
| --- a/Source/core/xml/XPathParser.cpp
|
| +++ b/Source/core/xml/XPathParser.cpp
|
| @@ -451,7 +451,7 @@ int Parser::lex(void* data)
|
| bool Parser::expandQName(const String& qName, String& localName, String& namespaceURI)
|
| {
|
| size_t colon = qName.find(':');
|
| - if (colon != notFound) {
|
| + if (colon != kNotFound) {
|
| if (!m_resolver)
|
| return false;
|
| namespaceURI = m_resolver->lookupNamespaceURI(qName.left(colon));
|
|
|