diff options
Diffstat (limited to 'unoxml')
-rw-r--r-- | unoxml/source/xpath/xpathapi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unoxml/source/xpath/xpathapi.cxx b/unoxml/source/xpath/xpathapi.cxx index faf243b6ff69..bae64f8fda45 100644 --- a/unoxml/source/xpath/xpathapi.cxx +++ b/unoxml/source/xpath/xpathapi.cxx @@ -108,7 +108,7 @@ namespace XPath { ::osl::MutexGuard const g(m_Mutex); - if ((m_nsmap.find(aPrefix))->second.equals(aURI)) { + if ((m_nsmap.find(aPrefix))->second == aURI) { m_nsmap.erase(aPrefix); } } |