sc/source/ui/Accessibility/AccessibleDocument.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit 2817695f069f05e7d6b3123d8e3e44ffe7c117b9 Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Sat Aug 22 18:45:10 2020 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Sun Aug 23 14:53:24 2020 +0200 Fix typo in code Change-Id: I4c85b93b57fc36e64f2d33e7440d8f20bcb78960 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101201 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/sc/source/ui/Accessibility/AccessibleDocument.cxx b/sc/source/ui/Accessibility/AccessibleDocument.cxx index 836e63e0c28b..d1a6b7d3758b 100644 --- a/sc/source/ui/Accessibility/AccessibleDocument.cxx +++ b/sc/source/ui/Accessibility/AccessibleDocument.cxx @@ -2210,19 +2210,19 @@ uno::Any SAL_CALL ScAccessibleDocument::getExtendedAttributes() { SolarMutexGuard g; - uno::Any anyAtrribute; + uno::Any anyAttribute; sal_uInt16 sheetIndex; OUString sSheetName; sheetIndex = getVisibleTable(); if(GetDocument()==nullptr) - return anyAtrribute; + return anyAttribute; GetDocument()->GetName(sheetIndex,sSheetName); OUString sValue = "page-name:" + sSheetName + ";page-number:" + OUString::number(sheetIndex+1) + ";total-pages:" + OUString::number(GetDocument()->GetTableCount()) + ";"; - anyAtrribute <<= sValue; - return anyAtrribute; + anyAttribute <<= sValue; + return anyAttribute; } sal_Int32 SAL_CALL ScAccessibleDocument::getForeground( ) _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits