From b4ee16da65eab7b50b29dcd42dc0f0be6b97b174 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 20 Jul 2015 09:21:24 +0200 Subject: com::sun::star->css in basic Change-Id: I637fd7aedeb97b7dca22521474a54a1d4274f212 Reviewed-on: https://gerrit.libreoffice.org/17206 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- basic/source/runtime/comenumwrapper.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'basic/source/runtime/comenumwrapper.hxx') diff --git a/basic/source/runtime/comenumwrapper.hxx b/basic/source/runtime/comenumwrapper.hxx index cda1c9910bce..fbe750c6a451 100644 --- a/basic/source/runtime/comenumwrapper.hxx +++ b/basic/source/runtime/comenumwrapper.hxx @@ -25,21 +25,21 @@ #include -class ComEnumerationWrapper : public ::cppu::WeakImplHelper< ::com::sun::star::container::XEnumeration > +class ComEnumerationWrapper : public ::cppu::WeakImplHelper< css::container::XEnumeration > { - ::com::sun::star::uno::Reference< ::com::sun::star::script::XInvocation > m_xInvocation; + css::uno::Reference< css::script::XInvocation > m_xInvocation; sal_Int32 m_nCurInd; public: - explicit ComEnumerationWrapper( const ::com::sun::star::uno::Reference< ::com::sun::star::script::XInvocation >& xInvocation ) + explicit ComEnumerationWrapper( const css::uno::Reference< css::script::XInvocation >& xInvocation ) : m_xInvocation( xInvocation ) , m_nCurInd( 0 ) { } // container::XEnumeration - virtual sal_Bool SAL_CALL hasMoreElements() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; - virtual ::com::sun::star::uno::Any SAL_CALL nextElement() throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual sal_Bool SAL_CALL hasMoreElements() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual css::uno::Any SAL_CALL nextElement() throw (css::container::NoSuchElementException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; }; #endif // INCLUDED_BASIC_SOURCE_RUNTIME_COMENUMWRAPPER_HXX -- cgit