[Libreoffice-commits] core.git: sw/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Sun Aug 23 18:13:48 UTC 2020
sw/source/core/access/accdoc.cxx | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
New commits:
commit 9d8fe885f242ab7dd21e338cc5a40a278db6b2ff
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sat Aug 22 19:28:56 2020 +0200
Commit: Julien Nabet <serval2412 at 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 <serval2412 at 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()
More information about the Libreoffice-commits
mailing list