diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-26 08:52:21 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-28 06:31:38 +0000 |
commit | 10e4396dc7c96061750208c32f29c372737f63d2 (patch) | |
tree | b907d092b111ebd78e8cf9f679d8ce83aa667382 /sax/source/expatwrap | |
parent | d95a27f944c8a28d0368f248028ddf395fe1c57e (diff) |
com::sun::star->css in sal,sax
Change-Id: I24e202b1f8071fe918e4e164b5fa1c08a561cb24
Reviewed-on: https://gerrit.libreoffice.org/19626
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sax/source/expatwrap')
-rw-r--r-- | sax/source/expatwrap/attrlistimpl.hxx | 20 | ||||
-rw-r--r-- | sax/source/expatwrap/sax_expat.cxx | 10 |
2 files changed, 15 insertions, 15 deletions
diff --git a/sax/source/expatwrap/attrlistimpl.hxx b/sax/source/expatwrap/attrlistimpl.hxx index 6a476385a81b..f5d283f92ccc 100644 --- a/sax/source/expatwrap/attrlistimpl.hxx +++ b/sax/source/expatwrap/attrlistimpl.hxx @@ -34,8 +34,8 @@ struct AttributeList_impl; //FIXME class AttributeList : public ::cppu::WeakImplHelper< - ::com::sun::star::xml::sax::XAttributeList, - ::com::sun::star::util::XCloneable > + css::xml::sax::XAttributeList, + css::util::XCloneable > { public: AttributeList(); @@ -48,21 +48,21 @@ public: public: // XAttributeList virtual sal_Int16 SAL_CALL getLength() - throw(::com::sun::star::uno::RuntimeException, std::exception) override; + throw(css::uno::RuntimeException, std::exception) override; virtual OUString SAL_CALL getNameByIndex(sal_Int16 i) - throw(::com::sun::star::uno::RuntimeException, std::exception) override; + throw(css::uno::RuntimeException, std::exception) override; virtual OUString SAL_CALL getTypeByIndex(sal_Int16 i) - throw(::com::sun::star::uno::RuntimeException, std::exception) override; + throw(css::uno::RuntimeException, std::exception) override; virtual OUString SAL_CALL getTypeByName(const OUString& aName) - throw(::com::sun::star::uno::RuntimeException, std::exception) override; + throw(css::uno::RuntimeException, std::exception) override; virtual OUString SAL_CALL getValueByIndex(sal_Int16 i) - throw(::com::sun::star::uno::RuntimeException, std::exception) override; + throw(css::uno::RuntimeException, std::exception) override; virtual OUString SAL_CALL getValueByName(const OUString& aName) - throw( ::com::sun::star::uno::RuntimeException, std::exception) override; + throw( css::uno::RuntimeException, std::exception) override; // XCloneable - virtual ::com::sun::star::uno::Reference< XCloneable > SAL_CALL - createClone() throw(::com::sun::star::uno::RuntimeException, std::exception) override; + virtual css::uno::Reference< XCloneable > SAL_CALL + createClone() throw(css::uno::RuntimeException, std::exception) override; private: struct AttributeList_impl *m_pImpl; diff --git a/sax/source/expatwrap/sax_expat.cxx b/sax/source/expatwrap/sax_expat.cxx index 5ca04d8f8e71..42c610dda54e 100644 --- a/sax/source/expatwrap/sax_expat.cxx +++ b/sax/source/expatwrap/sax_expat.cxx @@ -80,12 +80,12 @@ namespace { pThis->rDocumentLocator->getColumnNumber()\ ) );\ }\ - catch( const com::sun::star::uno::RuntimeException &e ) {\ + catch( const css::uno::RuntimeException &e ) {\ pThis->bExceptionWasThrown = true; \ pThis->bRTExceptionWasThrown = true; \ pImpl->rtexception = e; \ }\ - catch( const com::sun::star::uno::Exception &e ) {\ + catch( const css::uno::Exception &e ) {\ pThis->bExceptionWasThrown = true; \ pThis->bRTExceptionWasThrown = true; \ pImpl->rtexception = WrappedTargetRuntimeException("Non-runtime UNO exception caught during parse", e.Context, makeAny(e)); \ @@ -107,7 +107,7 @@ public: SaxExpatParser(); virtual ~SaxExpatParser(); - // ::com::sun::star::lang::XInitialization: + // css::lang::XInitialization: virtual void SAL_CALL initialize(css::uno::Sequence<css::uno::Any> const& rArguments) throw (css::uno::RuntimeException, css::uno::Exception, std::exception) override; @@ -317,7 +317,7 @@ extern "C" // LocatorImpl class LocatorImpl : - public WeakImplHelper< XLocator, com::sun::star::io::XSeekable > + public WeakImplHelper< XLocator, css::io::XSeekable > // should use a different interface for stream positions! { public: @@ -386,7 +386,7 @@ SaxExpatParser::~SaxExpatParser() delete m_pImpl; } -// ::com::sun::star::lang::XInitialization: +// css::lang::XInitialization: void SAL_CALL SaxExpatParser::initialize(css::uno::Sequence< css::uno::Any > const& rArguments) throw (css::uno::RuntimeException, css::uno::Exception, std::exception) |