sd/source/ui/unoidl/unomodel.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
New commits: commit 2ff3716fda13782e8e919982c3698d623d168a65 Author: Henry Castro <[email protected]> AuthorDate: Thu Sep 25 08:41:57 2025 -0400 Commit: Henry Castro <[email protected]> CommitDate: Fri Sep 26 14:30:28 2025 +0200 sd: add more text types Change-Id: I48da3afefcabfd5a917a20ca0976e3852460f3be Signed-off-by: Henry Castro <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191507 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191540 Tested-by: Jenkins diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx index 59e8da020e54..97fa3844fbe2 100644 --- a/sd/source/ui/unoidl/unomodel.cxx +++ b/sd/source/ui/unoidl/unomodel.cxx @@ -4669,7 +4669,11 @@ OString SdXImpressDocument::getPresentationInfo() const for (size_t nNote = 0; nNote < pNotesPage->GetObjCount(); nNote++) { pItObj = pNotesPage->GetObj(nNote); - if (pItObj && pItObj->GetObjIdentifier() == SdrObjKind::Text) + + if (pItObj && + (pItObj->GetObjIdentifier() == SdrObjKind::Text + || pItObj->GetObjIdentifier() == SdrObjKind::TitleText + || pItObj->GetObjIdentifier() == SdrObjKind::OutlineText)) { pNotes = pItObj; break;
