diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-07-10 12:33:25 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-07-12 20:16:14 +0200 |
commit | fcadbd72c14b9337cb11e4afb5143bff44a83646 (patch) | |
tree | 08aa5a767a743a5cf2f24dd987a358632cef475e /sd | |
parent | 74f4a1e4a8898b87e4b90804d369f1bfa49e6cbb (diff) |
Fix typo in code
Change-Id: I3ec1df316299da647acb9865b710fc5db5a80f0e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98488
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/sdtreelb.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/sdtreelb.cxx b/sd/source/ui/dlg/sdtreelb.cxx index f2c8cf343ac6..7d7f6a26ec5b 100644 --- a/sd/source/ui/dlg/sdtreelb.cxx +++ b/sd/source/ui/dlg/sdtreelb.cxx @@ -1087,12 +1087,12 @@ void SdPageObjsTLV::Fill(const SdDrawDocument* pInDoc, bool bAllPages, const OUS if( (m_bShowAllPages || pPage->GetPageKind() == PageKind::Standard) && (pPage->GetPageKind() != PageKind::Handout) ) //#94954# never list the normal handout page ( handout-masterpage is used instead ) { - bool bPageExluded = pPage->IsExcluded(); + bool bPageExcluded = pPage->IsExcluded(); bool bPageBelongsToShow = PageBelongsToCurrentShow (pPage); - bPageExluded |= !bPageBelongsToShow; + bPageExcluded |= !bPageBelongsToShow; - AddShapeList(*pPage, nullptr, pPage->GetName(), bPageExluded, nullptr); + AddShapeList(*pPage, nullptr, pPage->GetName(), bPageExcluded, nullptr); } nPage++; } |