summaryrefslogtreecommitdiff
path: root/sc/source/ui/attrdlg/scdlgfact.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-01-24 13:06:35 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-01-29 13:15:02 +0100
commite5e95c95b05ab79298b7e9f0de82536a1bd04c9b (patch)
treeb458962260240b4d5a2d2672189a96cf5821c4f8 /sc/source/ui/attrdlg/scdlgfact.cxx
parenta5e2f4a8419a09d3a7d4118328824a5ea7ed2d6b (diff)
make append/rename table dialog async
Change-Id: I3713271d121c525daa9800dcc1ac39bbd25e9c7e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162512 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/attrdlg/scdlgfact.cxx')
-rw-r--r--sc/source/ui/attrdlg/scdlgfact.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sc/source/ui/attrdlg/scdlgfact.cxx b/sc/source/ui/attrdlg/scdlgfact.cxx
index 10c27561a2c2..ef4ee9583585 100644
--- a/sc/source/ui/attrdlg/scdlgfact.cxx
+++ b/sc/source/ui/attrdlg/scdlgfact.cxx
@@ -936,6 +936,11 @@ short AbstractScStringInputDlg_Impl::Execute()
return m_xDlg->run();
}
+bool AbstractScStringInputDlg_Impl::StartExecuteAsync(VclAbstractDialog::AsyncContext &rCtx)
+{
+ return weld::DialogController::runAsync(m_xDlg, rCtx.maEndDialogFn);
+}
+
OUString AbstractScStringInputDlg_Impl::GetInputString() const
{
return m_xDlg->GetInputString();