summaryrefslogtreecommitdiff
path: root/svx/source/accessibility/ChildrenManager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/accessibility/ChildrenManager.cxx')
-rw-r--r--svx/source/accessibility/ChildrenManager.cxx22
1 files changed, 10 insertions, 12 deletions
diff --git a/svx/source/accessibility/ChildrenManager.cxx b/svx/source/accessibility/ChildrenManager.cxx
index ada8b29df564..49f193e0f4c4 100644
--- a/svx/source/accessibility/ChildrenManager.cxx
+++ b/svx/source/accessibility/ChildrenManager.cxx
@@ -29,8 +29,8 @@ namespace accessibility {
// AccessibleChildrenManager
ChildrenManager::ChildrenManager (
- const ::com::sun::star::uno::Reference<XAccessible>& rxParent,
- const ::com::sun::star::uno::Reference<drawing::XShapes>& rxShapeList,
+ const css::uno::Reference<XAccessible>& rxParent,
+ const css::uno::Reference<drawing::XShapes>& rxShapeList,
const AccessibleShapeTreeInfo& rShapeTreeInfo,
AccessibleContextBase& rContext)
: mpImpl (NULL)
@@ -61,25 +61,24 @@ long ChildrenManager::GetChildCount() const throw ()
return mpImpl->GetChildCount();
}
-::com::sun::star::uno::Reference<XAccessible> ChildrenManager::GetChild (long nIndex)
- throw (::com::sun::star::uno::RuntimeException,
- ::com::sun::star::lang::IndexOutOfBoundsException)
+css::uno::Reference<XAccessible> ChildrenManager::GetChild (long nIndex)
+ throw (css::uno::RuntimeException,
+ css::lang::IndexOutOfBoundsException)
{
assert(mpImpl != NULL);
return mpImpl->GetChild (nIndex);
}
Reference<XAccessible> ChildrenManager::GetChild (const Reference<drawing::XShape>& xShape)
- throw (::com::sun::star::uno::RuntimeException)
+ throw (css::uno::RuntimeException)
{
assert(mpImpl != NULL);
return mpImpl->GetChild (xShape);
}
-::com::sun::star::uno::Reference<
- ::com::sun::star::drawing::XShape> ChildrenManager::GetChildShape(long nIndex)
- throw (::com::sun::star::uno::RuntimeException,
- ::com::sun::star::lang::IndexOutOfBoundsException)
+css::uno::Reference<css::drawing::XShape> ChildrenManager::GetChildShape(long nIndex)
+ throw (css::uno::RuntimeException,
+ css::lang::IndexOutOfBoundsException)
{
assert(mpImpl != NULL);
return mpImpl->GetChildShape(nIndex);
@@ -91,8 +90,7 @@ void ChildrenManager::Update (bool bCreateNewObjectsOnDemand)
mpImpl->Update (bCreateNewObjectsOnDemand);
}
-void ChildrenManager::SetShapeList (const ::com::sun::star::uno::Reference<
- ::com::sun::star::drawing::XShapes>& xShapeList)
+void ChildrenManager::SetShapeList (const css::uno::Reference<css::drawing::XShapes>& xShapeList)
{
assert(mpImpl != NULL);
mpImpl->SetShapeList (xShapeList);