summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/notation.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/notation.cxx')
-rw-r--r--unoxml/source/dom/notation.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unoxml/source/dom/notation.cxx b/unoxml/source/dom/notation.cxx
index 9f2aca2bec6f..2fa8e3f6f71b 100644
--- a/unoxml/source/dom/notation.cxx
+++ b/unoxml/source/dom/notation.cxx
@@ -60,8 +60,8 @@ namespace DOM
OUString aName;
if (m_aNodePtr != nullptr)
{
- const xmlChar* xName = m_aNodePtr->name;
- aName = OUString(reinterpret_cast<char const *>(xName), strlen(reinterpret_cast<char const *>(xName)), RTL_TEXTENCODING_UTF8);
+ const xmlChar* pName = m_aNodePtr->name;
+ aName = OUString(reinterpret_cast<char const *>(pName), strlen(reinterpret_cast<char const *>(pName)), RTL_TEXTENCODING_UTF8);
}
return aName;
}