summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/node.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-05-21 12:18:36 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-05-22 12:50:46 +0200
commitabcbe967f2d46cc6d222dda06f6b1e734b2c9e08 (patch)
tree2c4f6dc419b147c97d0f8f6b4803532ac84f9253 /unoxml/source/dom/node.cxx
parentbc58eac34175253d6520be17ca962c77b3a1aef6 (diff)
unoxml: huge namespacing cleanup
Change-Id: I2170e8fd9ef5ca0556545cb3f656a0e1ba49f43b
Diffstat (limited to 'unoxml/source/dom/node.cxx')
-rw-r--r--unoxml/source/dom/node.cxx12
1 files changed, 7 insertions, 5 deletions
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)
{