diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-20 09:21:24 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-20 09:39:36 +0000 |
commit | b4ee16da65eab7b50b29dcd42dc0f0be6b97b174 (patch) | |
tree | 81e7d930894f13718f9a36772e55034d660e0cc1 /basic/source/runtime/comenumwrapper.hxx | |
parent | c02e79874951ba86d926186e284612806d8bc0a3 (diff) |
com::sun::star->css in basic
Change-Id: I637fd7aedeb97b7dca22521474a54a1d4274f212
Reviewed-on: https://gerrit.libreoffice.org/17206
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basic/source/runtime/comenumwrapper.hxx')
-rw-r--r-- | basic/source/runtime/comenumwrapper.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
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 <cppuhelper/implbase.hxx> -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 |