summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/domimplementation.hxx
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/domimplementation.hxx
parentbc58eac34175253d6520be17ca962c77b3a1aef6 (diff)
unoxml: huge namespacing cleanup
Change-Id: I2170e8fd9ef5ca0556545cb3f656a0e1ba49f43b
Diffstat (limited to 'unoxml/source/dom/domimplementation.hxx')
-rw-r--r--unoxml/source/dom/domimplementation.hxx16
1 files changed, 6 insertions, 10 deletions
diff --git a/unoxml/source/dom/domimplementation.hxx b/unoxml/source/dom/domimplementation.hxx
index b29b4cb32bd4..4ffd1875c6d2 100644
--- a/unoxml/source/dom/domimplementation.hxx
+++ b/unoxml/source/dom/domimplementation.hxx
@@ -29,14 +29,10 @@
#include <cppuhelper/implbase1.hxx>
-
-using namespace com::sun::star::uno;
-using namespace com::sun::star::xml::dom;
-
namespace DOM
{
class CDOMImplementation
- : public cppu::WeakImplHelper1< XDOMImplementation >
+ : public cppu::WeakImplHelper1< css::xml::dom::XDOMImplementation >
{
public:
@@ -49,20 +45,20 @@ namespace DOM
/**
Creates a DOM Document object of the specified type with its document element.
*/
- virtual Reference <XDocument > SAL_CALL createDocument(const OUString& namespaceURI, const OUString& qualifiedName, const Reference< XDocumentType >& doctype)
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual css::uno::Reference< css::xml::dom::XDocument > SAL_CALL createDocument(const OUString& namespaceURI, const OUString& qualifiedName, const css::uno::Reference< css::xml::dom::XDocumentType >& doctype)
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/**
Creates an empty DocumentType node.
*/
- virtual Reference< XDocumentType > SAL_CALL createDocumentType(const OUString& qualifiedName, const OUString& publicId, const OUString& systemId)
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual css::uno::Reference< css::xml::dom::XDocumentType > SAL_CALL createDocumentType(const OUString& qualifiedName, const OUString& publicId, const OUString& systemId)
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/**
Test if the DOM implementation implements a specific feature.
*/
virtual sal_Bool SAL_CALL hasFeature(const OUString& feature, const OUString& ver)
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
}
#endif