summaryrefslogtreecommitdiff
path: root/unoxml/source/dom
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom')
-rw-r--r--unoxml/source/dom/node.cxx1
-rw-r--r--unoxml/source/dom/saxbuilder.cxx6
-rw-r--r--unoxml/source/dom/saxbuilder.hxx1
3 files changed, 1 insertions, 7 deletions
diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx
index 73e2b5985f48..f486182eca83 100644
--- a/unoxml/source/dom/node.cxx
+++ b/unoxml/source/dom/node.cxx
@@ -90,7 +90,6 @@ namespace DOM
Context::Namespace aNS;
aNS.maPrefix = prefix;
aNS.mnToken = aIter->second;
- aNS.maNamespaceURL = val;
io_rContext.maNamespaces.back().push_back(aNS);
diff --git a/unoxml/source/dom/saxbuilder.cxx b/unoxml/source/dom/saxbuilder.cxx
index a8d1210c9c83..994a6c0392f6 100644
--- a/unoxml/source/dom/saxbuilder.cxx
+++ b/unoxml/source/dom/saxbuilder.cxx
@@ -191,12 +191,8 @@ namespace DOM
m_aNodeStack.top()->appendChild(aInstruction);
}
- void SAL_CALL CSAXDocumentBuilder::setDocumentLocator( const Reference< XLocator >& xLocator )
+ void SAL_CALL CSAXDocumentBuilder::setDocumentLocator( const Reference< XLocator >& )
{
- ::osl::MutexGuard g(m_Mutex);
-
- // set the document locator...
- m_aLocator = xLocator;
}
void SAL_CALL CSAXDocumentBuilder::startFastElement( sal_Int32 nElement , const Reference< XFastAttributeList >& xAttribs )
diff --git a/unoxml/source/dom/saxbuilder.hxx b/unoxml/source/dom/saxbuilder.hxx
index e2279a0c24bb..e20b5ccb95a5 100644
--- a/unoxml/source/dom/saxbuilder.hxx
+++ b/unoxml/source/dom/saxbuilder.hxx
@@ -56,7 +56,6 @@ namespace DOM
css::uno::Reference< css::xml::dom::XDocument > m_aDocument;
css::uno::Reference< css::xml::dom::XDocumentFragment > m_aFragment;
- css::uno::Reference< css::xml::sax::XLocator > m_aLocator;
public: