diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2020-05-20 18:53:39 +0200 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2020-05-21 11:19:05 +0200 |
commit | b516387cda854c93af29d270816b8acdb86d4d36 (patch) | |
tree | 438d661a5edb3d1fdae10fb9671013368436e8c9 /include | |
parent | c0f402da0f3ae8318103fc269e98c25617e83111 (diff) |
Make Impress Insert Table dialog async
Change-Id: If8b48cfe983819387c066d3bd81a42dad8947489
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94591
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94612
Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svxdlg.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx index 76ef0d3c35cb..7fb3767ad742 100644 --- a/include/svx/svxdlg.hxx +++ b/include/svx/svxdlg.hxx @@ -300,13 +300,14 @@ public: virtual void SetSplitVerticalByDefault() = 0; }; -class SvxAbstractNewTableDialog : public VclAbstractDialog +class SvxAbstractNewTableDialog { protected: - virtual ~SvxAbstractNewTableDialog() override = default; + virtual ~SvxAbstractNewTableDialog() = default; public: virtual sal_Int32 getRows() const = 0; virtual sal_Int32 getColumns() const = 0; + virtual std::shared_ptr<weld::DialogController> getDialogController() = 0; }; class SvxAbstractInsRowColDlg : public VclAbstractDialog @@ -453,7 +454,7 @@ public: virtual VclPtr<SvxAbstractSplitTableDialog> CreateSvxSplitTableDialog(weld::Window* pParent, bool bIsTableVertical, long nMaxVertical) = 0; - virtual VclPtr<SvxAbstractNewTableDialog> CreateSvxNewTableDialog(weld::Window* pParent) = 0; + virtual std::shared_ptr<SvxAbstractNewTableDialog> CreateSvxNewTableDialog(weld::Window* pParent) = 0; virtual VclPtr<SvxAbstractInsRowColDlg> CreateSvxInsRowColDlg(weld::Window* pParent, bool bCol, const OString& rHelpId) = 0; }; |