summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework/factories/BasicViewFactory.cxx
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 /sd/source/ui/framework/factories/BasicViewFactory.cxx
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 'sd/source/ui/framework/factories/BasicViewFactory.cxx')
-rw-r--r--sd/source/ui/framework/factories/BasicViewFactory.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/framework/factories/BasicViewFactory.cxx b/sd/source/ui/framework/factories/BasicViewFactory.cxx
index d97c62d06d8e..581260d347c4 100644
--- a/sd/source/ui/framework/factories/BasicViewFactory.cxx
+++ b/sd/source/ui/framework/factories/BasicViewFactory.cxx
@@ -471,15 +471,15 @@ std::shared_ptr<BasicViewFactory::ViewDescriptor> BasicViewFactory::GetViewFromC
// remove it from the cache.
if (pDescriptor != nullptr)
{
- bool bRelocationSuccessfull (false);
+ bool bRelocationSuccessful (false);
Reference<XRelocatableResource> xResource (pDescriptor->mxView, UNO_QUERY);
if (xResource.is() && rxPane.is())
{
if (xResource->relocateToAnchor(rxPane))
- bRelocationSuccessfull = true;
+ bRelocationSuccessful = true;
}
- if ( ! bRelocationSuccessfull)
+ if ( ! bRelocationSuccessful)
{
ReleaseView(pDescriptor, true);
pDescriptor.reset();