summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-01-30 15:57:46 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-01-30 20:12:58 +0100
commit95dc399434ea08b7c762f918d0c6360ef3e0e179 (patch)
tree04d1428c99361b840807409be980082f6faa6757 /sw/inc
parent7bd438c42c8c7f80bfdb99d53aac9674b5ae0a3e (diff)
make set-row-height dialog async
Change-Id: I03e27c09da4f8b58468d4e551413946f03b25f1e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162761 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/swabstdlg.hxx9
1 files changed, 8 insertions, 1 deletions
diff --git a/sw/inc/swabstdlg.hxx b/sw/inc/swabstdlg.hxx
index 621ac8cd666f..c8974620060e 100644
--- a/sw/inc/swabstdlg.hxx
+++ b/sw/inc/swabstdlg.hxx
@@ -436,6 +436,13 @@ public:
virtual void Apply() = 0;
};
+class AbstractSwTableHeightDlg : public VclAbstractDialog
+{
+protected:
+ virtual ~AbstractSwTableHeightDlg() override = default;
+public:
+ virtual void Apply() = 0;
+};
class SwAbstractDialogFactory
{
@@ -497,7 +504,7 @@ public:
virtual VclPtr<AbstractSwSelGlossaryDlg> CreateSwSelGlossaryDlg(weld::Window *pParent, const OUString &rShortName) = 0;
virtual VclPtr<AbstractSwSortDlg> CreateSwSortingDialog(weld::Window *pParent, SwWrtShell &rSh) = 0;
- virtual VclPtr<VclAbstractDialog> CreateSwTableHeightDialog(weld::Window *pParent, SwWrtShell &rSh) = 0;
+ virtual VclPtr<AbstractSwTableHeightDlg> CreateSwTableHeightDialog(weld::Window *pParent, SwWrtShell &rSh) = 0;
virtual VclPtr<VclAbstractDialog> CreateSwColumnDialog(weld::Window *pParent, SwWrtShell &rSh) = 0;
virtual VclPtr<AbstractSplitTableDialog> CreateSplitTableDialog(weld::Window* pParent, SwWrtShell &rSh) = 0;