[Libreoffice-commits] core.git: sd/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Sun Jul 12 18:16:52 UTC 2020


 sd/source/ui/dlg/sdtreelb.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit fcadbd72c14b9337cb11e4afb5143bff44a83646
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Jul 10 12:33:25 2020 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sun Jul 12 20:16:14 2020 +0200

    Fix typo in code
    
    Change-Id: I3ec1df316299da647acb9865b710fc5db5a80f0e
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98488
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

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++;
     }


More information about the Libreoffice-commits mailing list