diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-01-31 10:22:38 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-01-31 17:21:59 +0100 |
commit | 09c29b56fe8af1f3428a96017fec4d921e023906 (patch) | |
tree | 0eff94cd371f9cc4db8c61043698ccee6e4ca44b /sw/source/uibase/shells/textfld.cxx | |
parent | dcbcc12b9f9db99ba18811c7249917916748e2a7 (diff) |
make field-edit dialog async
Change-Id: Ib24166fe0370a27357adf1611deafda2686a14aa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162805
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase/shells/textfld.cxx')
-rw-r--r-- | sw/source/uibase/shells/textfld.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sw/source/uibase/shells/textfld.cxx b/sw/source/uibase/shells/textfld.cxx index ac28d14bd079..efb60c197a3c 100644 --- a/sw/source/uibase/shells/textfld.cxx +++ b/sw/source/uibase/shells/textfld.cxx @@ -164,8 +164,15 @@ void SwTextShell::ExecField(SfxRequest &rReq) default: { SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create(); - ScopedVclPtr<SfxAbstractDialog> pDlg(pFact->CreateSwFieldEditDlg( GetView() )); - pDlg->Execute(); + VclPtr<SfxAbstractDialog> pDlg(pFact->CreateSwFieldEditDlg( GetView() )); + // without TabPage no dialog + if (pDlg) + pDlg->StartExecuteAsync( + [pDlg] (sal_Int32 /*nResult*/)->void + { + pDlg->disposeOnce(); + } + ); } } } |