sd/source/ui/unoidl/unomodel.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
New commits: commit 2388f0e4c82cdfc9ff287109e97f58ca7614ab97 Author: Henry Castro <hcas...@collabora.com> AuthorDate: Thu Sep 25 08:41:57 2025 -0400 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Thu Sep 25 21:21:21 2025 +0200 sd: add more text types Change-Id: I48da3afefcabfd5a917a20ca0976e3852460f3be Signed-off-by: Henry Castro <hcas...@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191507 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com> Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> Tested-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx index 8566abf85f7c..7889431fa898 100644 --- a/sd/source/ui/unoidl/unomodel.cxx +++ b/sd/source/ui/unoidl/unomodel.cxx @@ -4707,7 +4707,11 @@ OString SdXImpressDocument::getPresentationInfo(bool bAllyState) 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;