sd/source/core/drawdoc2.cxx | 5 -----
1 file changed, 5 deletions(-)
New commits:
commit 719f17554e2e73563cd90593c3f7f6b0eea84f17
Author: Noel Grandin <[email protected]>
AuthorDate: Tue Apr 1 11:25:07 2025 +0200
Commit: Noel Grandin <[email protected]>
CommitDate: Tue Apr 1 12:11:58 2025 +0200
tdf#165473 PPTX hyperlinks to other slides do not work
regression from
commit c638ae429e500cee147b621ed30d9fed392edd0a
Author: Noel Grandin <[email protected]>
Date: Fri Oct 18 16:21:10 2024 +0200
don't use iterateItemSurrogates for EE_FEATURE_FIELD
Change-Id: Ibf7a89cb30dd11591152a7e052e4d11ea4bf9407
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183578
Reviewed-by: Noel Grandin <[email protected]>
Tested-by: Jenkins
diff --git a/sd/source/core/drawdoc2.cxx b/sd/source/core/drawdoc2.cxx
index ed91f4034046..5f8ab487f9e4 100644
--- a/sd/source/core/drawdoc2.cxx
+++ b/sd/source/core/drawdoc2.cxx
@@ -306,11 +306,6 @@ static void UpdatePageRelativeURLs(SdrObject& rObj, const
std::function<void(con
if (!pOutlinerParagraphObject)
return;
EditTextObject& aEdit =
const_cast<EditTextObject&>(pOutlinerParagraphObject->GetTextObject());
- if (!aEdit.IsFieldObject())
- return;
- const SvxFieldItem* pFieldItem = aEdit.GetField();
- if (!pFieldItem)
- return;
aEdit.GetFieldUpdater().UpdatePageRelativeURLs(rItemCallback);
};