diff options
Diffstat (limited to 'sd/source/ui/accessibility/AccessibleOutlineView.cxx')
-rw-r--r-- | sd/source/ui/accessibility/AccessibleOutlineView.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/accessibility/AccessibleOutlineView.cxx b/sd/source/ui/accessibility/AccessibleOutlineView.cxx index da288df9745a..f6f94445d4a3 100644 --- a/sd/source/ui/accessibility/AccessibleOutlineView.cxx +++ b/sd/source/ui/accessibility/AccessibleOutlineView.cxx @@ -78,7 +78,7 @@ AccessibleOutlineView::AccessibleOutlineView ( : AccessibleDocumentViewBase (pSdWindow, pViewShell, rxController, rxParent), maTextHelper( ::std::auto_ptr< SvxEditSource >( NULL ) ) { - ::vos::OGuard aGuard( Application::GetSolarMutex() ); + SolarMutexGuard aGuard; // Beware! Here we leave the paths of the UNO API and descend into the // depths of the core. Necessary for making the edit engine accessible. @@ -194,7 +194,7 @@ void AccessibleOutlineView::FireEvent(const AccessibleEventObject& aEvent ) void AccessibleOutlineView::Activated (void) { - ::vos::OGuard aGuard( Application::GetSolarMutex() ); + SolarMutexGuard aGuard; // delegate listener handling to children manager. maTextHelper.SetFocus(sal_True); @@ -202,7 +202,7 @@ void AccessibleOutlineView::Activated (void) void AccessibleOutlineView::Deactivated (void) { - ::vos::OGuard aGuard( Application::GetSolarMutex() ); + SolarMutexGuard aGuard; // delegate listener handling to children manager. maTextHelper.SetFocus(sal_False); @@ -254,7 +254,7 @@ void SAL_CALL AccessibleOutlineView::CreateAccessibleName (void) throw (::com::sun::star::uno::RuntimeException) { - ::vos::OGuard aGuard( Application::GetSolarMutex() ); + SolarMutexGuard aGuard; return String( SdResId(SID_SD_A11Y_I_OUTLINEVIEW_N) ); } @@ -267,14 +267,14 @@ void SAL_CALL AccessibleOutlineView::CreateAccessibleDescription (void) throw (::com::sun::star::uno::RuntimeException) { - ::vos::OGuard aGuard( Application::GetSolarMutex() ); + SolarMutexGuard aGuard; return String( SdResId(SID_SD_A11Y_I_OUTLINEVIEW_D) ); } void AccessibleOutlineView::UpdateChildren() { - ::vos::OGuard aGuard( Application::GetSolarMutex() ); + SolarMutexGuard aGuard; // Update visible children maTextHelper.UpdateChildren(); |