sw/source/core/access/accdoc.cxx |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 9d8fe885f242ab7dd21e338cc5a40a278db6b2ff
Author:     Andrea Gelmini <andrea.gelm...@gelma.net>
AuthorDate: Sat Aug 22 19:28:56 2020 +0200
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Sun Aug 23 20:13:14 2020 +0200

    Fix typo in code
    
    Change-Id: I028a75b1ce4cceb601ac2e50693cde94df57f684
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101208
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

diff --git a/sw/source/core/access/accdoc.cxx b/sw/source/core/access/accdoc.cxx
index bf2c0e844a2b..53a974acc96a 100644
--- a/sw/source/core/access/accdoc.cxx
+++ b/sw/source/core/access/accdoc.cxx
@@ -512,14 +512,14 @@ uno::Any SAL_CALL 
SwAccessibleDocument::getExtendedAttributes()
 {
     SolarMutexGuard g;
 
-    uno::Any anyAtrribute;
+    uno::Any anyAttribute;
     SwDoc *pDoc = GetMap() ? GetShell()->GetDoc() : nullptr;
 
     if (!pDoc)
-        return anyAtrribute;
+        return anyAttribute;
     SwCursorShell* pCursorShell = GetCursorShell();
     if( !pCursorShell )
-        return anyAtrribute;
+        return anyAttribute;
 
     SwFEShell* pFEShell = dynamic_cast<const SwFEShell*>( pCursorShell) !=  
nullptr
                                 ? static_cast<SwFEShell*>( pCursorShell )
@@ -705,9 +705,9 @@ uno::Any SAL_CALL 
SwAccessibleDocument::getExtendedAttributes()
                 OUString::number( nSctColCount ) + ";";
         }
 
-        anyAtrribute <<= sValue;
+        anyAttribute <<= sValue;
     }
-    return anyAtrribute;
+    return anyAttribute;
 }
 
 sal_Int32 SAL_CALL SwAccessibleDocument::getBackground()
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to