summaryrefslogtreecommitdiff
path: root/sw/source/core/access/accselectionhelper.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-06 10:51:51 +0200
committerNoel Grandin <noel@peralex.com>2015-11-06 11:55:09 +0200
commit2633976ef3406d48907bd922f067ea04e39c94f1 (patch)
treec29440a174d106805b686299fcaa4a3bacf23592 /sw/source/core/access/accselectionhelper.hxx
parent41d83eb8cd8e9544641182ff19a8c635760e75dc (diff)
com::sun::star->css in sw/source/core
Change-Id: I30016977f1be8fb53dd239367d043de92a9467d9
Diffstat (limited to 'sw/source/core/access/accselectionhelper.hxx')
-rw-r--r--sw/source/core/access/accselectionhelper.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/source/core/access/accselectionhelper.hxx b/sw/source/core/access/accselectionhelper.hxx
index 5c189ff425c7..2dc163dbd87b 100644
--- a/sw/source/core/access/accselectionhelper.hxx
+++ b/sw/source/core/access/accselectionhelper.hxx
@@ -34,7 +34,7 @@ class SwAccessibleSelectionHelper
SwFEShell* GetFEShell();
void throwIndexOutOfBoundsException()
- throw ( ::com::sun::star::lang::IndexOutOfBoundsException );
+ throw ( css::lang::IndexOutOfBoundsException );
public:
SwAccessibleSelectionHelper( SwAccessibleContext& rContext );
@@ -44,26 +44,26 @@ public:
void selectAccessibleChild(
sal_Int32 nChildIndex )
- throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
- ::com::sun::star::uno::RuntimeException );
+ throw ( css::lang::IndexOutOfBoundsException,
+ css::uno::RuntimeException );
bool isAccessibleChildSelected(
sal_Int32 nChildIndex )
- throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
- ::com::sun::star::uno::RuntimeException );
+ throw ( css::lang::IndexOutOfBoundsException,
+ css::uno::RuntimeException );
void selectAllAccessibleChildren( )
- throw ( ::com::sun::star::uno::RuntimeException );
+ throw ( css::uno::RuntimeException );
sal_Int32 getSelectedAccessibleChildCount( )
- throw ( ::com::sun::star::uno::RuntimeException );
- ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > getSelectedAccessibleChild(
+ throw ( css::uno::RuntimeException );
+ css::uno::Reference< css::accessibility::XAccessible > getSelectedAccessibleChild(
sal_Int32 nSelectedChildIndex )
- throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
- ::com::sun::star::uno::RuntimeException);
+ throw ( css::lang::IndexOutOfBoundsException,
+ css::uno::RuntimeException);
// index has to be treated as global child index.
void deselectAccessibleChild(
sal_Int32 nChildIndex )
- throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
- ::com::sun::star::uno::RuntimeException );
+ throw ( css::lang::IndexOutOfBoundsException,
+ css::uno::RuntimeException );
};
#endif