basctl/source/dlged/dlged.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit 8472ffa70887b8f68d7e8f17faef377a83b0695e
Author: Rafael Lima <[email protected]>
AuthorDate: Wed Jan 17 20:33:43 2024 +0100
Commit: Xisco Fauli <[email protected]>
CommitDate: Fri Jan 19 17:08:20 2024 +0100
tdf#159247 Fix crash while adding control with default properties (Dialog
Editor)
Controls created using the Ctrl+toolbar (which adds a control with default
properties) did not have a parent form, which causes the crash.
Change-Id: Ic2f469e6656a93bbed25d86092384f81b21aaca5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162217
Tested-by: Jenkins
Reviewed-by: Patrick Luby <[email protected]>
Reviewed-by: Rafael Lima <[email protected]>
(cherry picked from commit c4e5b1b934fc3c59fb35ae6c02a0ddf8501a6d28)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162278
Reviewed-by: Xisco Fauli <[email protected]>
diff --git a/basctl/source/dlged/dlged.cxx b/basctl/source/dlged/dlged.cxx
index 2eb099718b5b..a91a6511bd50 100644
--- a/basctl/source/dlged/dlged.cxx
+++ b/basctl/source/dlged/dlged.cxx
@@ -620,6 +620,8 @@ void DlgEditor::CreateDefaultObject()
// set default property values
pDlgEdObj->SetDefaults();
+ // set the form to which the new object belongs
+ pDlgEdObj->SetDlgEdForm(pDlgEdForm.get());
// insert object into drawing page
SdrPageView* pPageView = pDlgEdView->GetSdrPageView();