diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-22 23:04:25 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-08-23 12:45:26 +0200 |
commit | 7bbe6e5c72178781cb798f7c8497619422372c13 (patch) | |
tree | faf68369b1afd0c740d4503ff9b5f1389f98e871 /sd | |
parent | dd3e57b1f803b7835fb9bfaa205cb24a167ad19d (diff) |
Fix typo in code
Change-Id: I762b2cfa3aafed4f68743c58c0b3eff556efe846
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101214
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx b/sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx index 67c1a1fb08b7..859641ddb328 100644 --- a/sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx +++ b/sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx @@ -653,7 +653,7 @@ uno::Any SAL_CALL AccessibleDocumentViewBase::getExtendedAttributes() { ::osl::MutexGuard aGuard (maMutex); - uno::Any anyAtrribute; + uno::Any anyAttribute; OUStringBuffer sValue; if (nullptr != dynamic_cast<const ::sd::DrawViewShell* > (mpViewShell)) { @@ -760,8 +760,8 @@ uno::Any SAL_CALL AccessibleDocumentViewBase::getExtendedAttributes() } } if (sValue.getLength()) - anyAtrribute <<= sValue.makeStringAndClear(); - return anyAtrribute; + anyAttribute <<= sValue.makeStringAndClear(); + return anyAttribute; } sal_Int32 SAL_CALL AccessibleDocumentViewBase::getForeground( ) |