Kaydet (Commit) 09394116 authored tarafından Noel Grandin's avatar Noel Grandin

loplugin:unusedfields in unoxml

Change-Id: I03655d967dc165885bb51e4a931930590632c32d
Reviewed-on: https://gerrit.libreoffice.org/68159
Tested-by: Jenkins
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst e0c9956a
......@@ -64,7 +64,6 @@ namespace DOM
{
OString maPrefix;
sal_Int32 mnToken;
OUString maNamespaceURL;
const OString& getPrefix() const { return maPrefix; }
};
......
......@@ -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);
......
......@@ -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 )
......
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment