From 3dcf6dfceee58360501396390d78c006351aef47 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 2 Aug 2017 12:57:55 +0200 Subject: remove unnecessary use of 'this->' Change-Id: I5c115389af7d24c18ddaf5fbec8c00f35017a5b4 Reviewed-on: https://gerrit.libreoffice.org/40671 Tested-by: Jenkins Reviewed-by: Noel Grandin --- unoxml/source/dom/document.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unoxml') diff --git a/unoxml/source/dom/document.cxx b/unoxml/source/dom/document.cxx index 11fe708fe902..8bd5a3eb7584 100644 --- a/unoxml/source/dom/document.cxx +++ b/unoxml/source/dom/document.cxx @@ -695,7 +695,7 @@ namespace DOM ::osl::MutexGuard const g(m_Mutex); Reference< XNodeList > const xRet( - new CElementList(this->GetDocumentElement(), m_Mutex, rTagname)); + new CElementList(GetDocumentElement(), m_Mutex, rTagname)); return xRet; } @@ -705,7 +705,7 @@ namespace DOM ::osl::MutexGuard const g(m_Mutex); Reference< XNodeList > const xRet( - new CElementList(this->GetDocumentElement(), m_Mutex, + new CElementList(GetDocumentElement(), m_Mutex, rLocalName, &rNamespaceURI)); return xRet; } -- cgit v1.2.3