diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-17 15:53:18 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-18 06:50:40 +0000 |
commit | 7f5c879310ce5add04a7f5d84c9a55e9ffbb5855 (patch) | |
tree | e5bf1857d14cc1e1a02c62e36e1468f399a81000 /unotools/source/accessibility/accessiblestatesethelper.cxx | |
parent | 21c5ff1287c05e24d5cc2b6100866e6992ff8381 (diff) |
com::sun::star->css in unotools/
Change-Id: Ie36efe4abe7f5c505f564147eb52e0222c1ce955
Reviewed-on: https://gerrit.libreoffice.org/20019
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'unotools/source/accessibility/accessiblestatesethelper.cxx')
-rw-r--r-- | unotools/source/accessibility/accessiblestatesethelper.cxx | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/unotools/source/accessibility/accessiblestatesethelper.cxx b/unotools/source/accessibility/accessiblestatesethelper.cxx index 7c0e100fc49c..1608b9743da5 100644 --- a/unotools/source/accessibility/accessiblestatesethelper.cxx +++ b/unotools/source/accessibility/accessiblestatesethelper.cxx @@ -241,22 +241,18 @@ void AccessibleStateSetHelper::RemoveState(sal_Int16 aState) //===== XTypeProvider ======================================================= -uno::Sequence< ::com::sun::star::uno::Type> - AccessibleStateSetHelper::getTypes() - throw (::com::sun::star::uno::RuntimeException, std::exception) +uno::Sequence< css::uno::Type> AccessibleStateSetHelper::getTypes() + throw (css::uno::RuntimeException, std::exception) { - const ::com::sun::star::uno::Type aTypeList[] = { + css::uno::Sequence< css::uno::Type> aTypeSequence { cppu::UnoType<XAccessibleStateSet>::get(), cppu::UnoType<lang::XTypeProvider>::get() - }; - ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type> - aTypeSequence (aTypeList, 2); + }; return aTypeSequence; } -uno::Sequence<sal_Int8> SAL_CALL - AccessibleStateSetHelper::getImplementationId() - throw (::com::sun::star::uno::RuntimeException, std::exception) +uno::Sequence<sal_Int8> SAL_CALL AccessibleStateSetHelper::getImplementationId() + throw (css::uno::RuntimeException, std::exception) { return css::uno::Sequence<sal_Int8>(); } |