From abcbe967f2d46cc6d222dda06f6b1e734b2c9e08 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Wed, 21 May 2014 12:18:36 +0200 Subject: unoxml: huge namespacing cleanup Change-Id: I2170e8fd9ef5ca0556545cb3f656a0e1ba49f43b --- unoxml/source/dom/node.cxx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'unoxml/source/dom/node.cxx') diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx index ac386c3b5eb0..aab0ffe9430b 100644 --- a/unoxml/source/dom/node.cxx +++ b/unoxml/source/dom/node.cxx @@ -43,9 +43,11 @@ #include "../events/eventdispatcher.hxx" #include "../events/mutationevent.hxx" - - -using namespace ::com::sun::star; +using namespace css; +using namespace css::uno; +using namespace css::xml::dom; +using namespace css::xml::dom::events; +using namespace css::xml::sax; namespace { @@ -987,7 +989,7 @@ namespace DOM // --- XEventTarget void SAL_CALL CNode::addEventListener(const OUString& eventType, - const Reference< com::sun::star::xml::dom::events::XEventListener >& listener, + const Reference< css::xml::dom::events::XEventListener >& listener, sal_Bool useCapture) throw (RuntimeException, std::exception) { @@ -999,7 +1001,7 @@ namespace DOM } void SAL_CALL CNode::removeEventListener(const OUString& eventType, - const Reference< com::sun::star::xml::dom::events::XEventListener >& listener, + const Reference< css::xml::dom::events::XEventListener >& listener, sal_Bool useCapture) throw (RuntimeException, std::exception) { -- cgit