diff options
author | Noel Grandin <noel@peralex.com> | 2014-05-08 11:44:15 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-05-08 11:48:14 +0200 |
commit | 78b9537b6aca0f998f939988e6e1a56528d28baf (patch) | |
tree | 6b96ba6b37c32c3ba2ffa112aff990739642e063 /unoxml/source | |
parent | e5d0a9ad78ceb531018cb49c1d78b0f63ba92995 (diff) |
various: sal_Bool->bool
Change-Id: I30fa5227f30373f95060148f269450d2945c1bb9
Diffstat (limited to 'unoxml/source')
-rw-r--r-- | unoxml/source/xpath/xpathobject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unoxml/source/xpath/xpathobject.cxx b/unoxml/source/xpath/xpathobject.cxx index 0272c826b97d..11078401865a 100644 --- a/unoxml/source/xpath/xpathobject.cxx +++ b/unoxml/source/xpath/xpathobject.cxx @@ -95,7 +95,7 @@ namespace XPath { ::osl::MutexGuard const g(m_rMutex); - return (sal_Bool) xmlXPathCastToBoolean(m_pXPathObj.get()); + return xmlXPathCastToBoolean(m_pXPathObj.get()) != 0; } /** |