summaryrefslogtreecommitdiff
path: root/svx/source/fmcomp
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2021-09-11 22:18:04 +0200
committerJulien Nabet <serval2412@yahoo.fr>2021-09-12 08:42:14 +0200
commiteb848249f51323089e78a26c1a05b264eaf98c0f (patch)
treef4a9dda20f7eb7be0ffad01fa8d3c973fb2438b5 /svx/source/fmcomp
parentd8b765e6c45792bff5717cd0e0d9d42311c33461 (diff)
Typo *Successfull->*Successful
Change-Id: I837241da936ac013312228f774d08bb8dafa45e1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121967 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r--svx/source/fmcomp/fmgridcl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/fmcomp/fmgridcl.cxx b/svx/source/fmcomp/fmgridcl.cxx
index a3bcd5816214..a64ae20db07d 100644
--- a/svx/source/fmcomp/fmgridcl.cxx
+++ b/svx/source/fmcomp/fmgridcl.cxx
@@ -1805,7 +1805,7 @@ bool FmGridControl::selectBookmarks(const Sequence< Any >& _rBookmarks)
SetNoSelection();
- bool bAllSuccessfull = true;
+ bool bAllSuccessful = true;
try
{
for (const Any& rBookmark : _rBookmarks)
@@ -1814,7 +1814,7 @@ bool FmGridControl::selectBookmarks(const Sequence< Any >& _rBookmarks)
if (m_pSeekCursor->moveToBookmark(rBookmark))
SelectRow( m_pSeekCursor->getRow() - 1);
else
- bAllSuccessfull = false;
+ bAllSuccessful = false;
}
}
catch(Exception&)
@@ -1823,7 +1823,7 @@ bool FmGridControl::selectBookmarks(const Sequence< Any >& _rBookmarks)
return false;
}
- return bAllSuccessfull;
+ return bAllSuccessful;
}
Sequence< Any> FmGridControl::getSelectionBookmarks()