[Libreoffice-commits] core.git: sc/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Sun Aug 23 12:54:09 UTC 2020


 sc/source/ui/Accessibility/AccessibleDocument.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 2817695f069f05e7d6b3123d8e3e44ffe7c117b9
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sat Aug 22 18:45:10 2020 +0200
Commit:     Julien Nabet <serval2412 at 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 <serval2412 at 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(  )


More information about the Libreoffice-commits mailing list