sd/source/ui/unoidl/unomodel.cxx | 3 +++ 1 file changed, 3 insertions(+)
New commits: commit 3c49a3be592eb515bba100b4a17617136fabbcba Author: Pranam Lashkari <[email protected]> AuthorDate: Tue Mar 30 21:52:13 2021 +0530 Commit: Pranam Lashkari <[email protected]> CommitDate: Wed Mar 31 14:38:06 2021 +0200 LOK: getPartInfo now returns master page count master page count will be used when switching to master view to know how many slide previews to be shown Change-Id: I11735797d16538a9f667a85b90a86b1e6cf9b5aa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113358 Tested-by: Jenkins Reviewed-by: Pranam Lashkari <[email protected]> diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx index 62df5ec84a62..c8812900cb93 100644 --- a/sd/source/ui/unoidl/unomodel.cxx +++ b/sd/source/ui/unoidl/unomodel.cxx @@ -2274,11 +2274,14 @@ OUString SdXImpressDocument::getPartInfo(int nPart) const bool bIsVisible = pViewSh->IsVisible(nPart); const bool bIsSelected = pViewSh->IsSelected(nPart); + const sal_Int16 nMasterPageCount= pViewSh->GetDoc()->GetMasterSdPageCount(pViewSh->GetPageKind()); OUString aPartInfo = "{ \"visible\": \"" + OUString::number(static_cast<unsigned int>(bIsVisible)) + "\", \"selected\": \"" + OUString::number(static_cast<unsigned int>(bIsSelected)) + + "\", \"masterPageCount\": \"" + + OUString::number(nMasterPageCount) + "\" }"; return aPartInfo; } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
