summaryrefslogtreecommitdiff
path: root/unotools/source/accessibility
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-17 15:53:18 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-18 06:50:40 +0000
commit7f5c879310ce5add04a7f5d84c9a55e9ffbb5855 (patch)
treee5bf1857d14cc1e1a02c62e36e1468f399a81000 /unotools/source/accessibility
parent21c5ff1287c05e24d5cc2b6100866e6992ff8381 (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')
-rw-r--r--unotools/source/accessibility/accessiblerelationsethelper.cxx16
-rw-r--r--unotools/source/accessibility/accessiblestatesethelper.cxx16
2 files changed, 12 insertions, 20 deletions
diff --git a/unotools/source/accessibility/accessiblerelationsethelper.cxx b/unotools/source/accessibility/accessiblerelationsethelper.cxx
index e411a9c937cc..726943ce98b7 100644
--- a/unotools/source/accessibility/accessiblerelationsethelper.cxx
+++ b/unotools/source/accessibility/accessiblerelationsethelper.cxx
@@ -228,23 +228,19 @@ void AccessibleRelationSetHelper::AddRelation(const AccessibleRelation& rRelatio
//===== XTypeProvider =======================================================
-uno::Sequence< ::com::sun::star::uno::Type>
- AccessibleRelationSetHelper::getTypes()
- throw (::com::sun::star::uno::RuntimeException, std::exception)
+uno::Sequence< css::uno::Type> AccessibleRelationSetHelper::getTypes()
+ throw (css::uno::RuntimeException, std::exception)
{
osl::MutexGuard aGuard (maMutex);
- const ::com::sun::star::uno::Type aTypeList[] = {
+ css::uno::Sequence< css::uno::Type> aTypeSequence {
cppu::UnoType<XAccessibleRelationSet>::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
- AccessibleRelationSetHelper::getImplementationId()
- throw (::com::sun::star::uno::RuntimeException, std::exception)
+uno::Sequence<sal_Int8> SAL_CALL AccessibleRelationSetHelper::getImplementationId()
+ throw (css::uno::RuntimeException, std::exception)
{
return css::uno::Sequence<sal_Int8>();
}
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>();
}