diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2023-03-02 16:10:30 +0100 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2023-03-04 07:08:08 +0000 |
commit | 8128a6a8e2c59a2ac6aafe96a69b6dd5c4a32ceb (patch) | |
tree | 89a3d56546aa23fc85a956cc54266a7585c7537d /vcl/inc/salvtables.hxx | |
parent | a5e2201643392d0509cb970faf1c1e7038d14f4e (diff) |
jsdialog: handle weld_widget_for_response
Change-Id: I3b8d3911ff93bd26f8bdfb498b547fd335c3db8b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148113
Tested-by: Jenkins
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Diffstat (limited to 'vcl/inc/salvtables.hxx')
-rw-r--r-- | vcl/inc/salvtables.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/vcl/inc/salvtables.hxx b/vcl/inc/salvtables.hxx index 1fe2d85b29f0..05e29dfc8ad3 100644 --- a/vcl/inc/salvtables.hxx +++ b/vcl/inc/salvtables.hxx @@ -504,9 +504,10 @@ public: class SalInstanceDialog : public SalInstanceWindow, public virtual weld::Dialog { -private: +protected: VclPtr<::Dialog> m_xDialog; +private: // for calc ref dialog that shrink to range selection widgets and resize back VclPtr<vcl::Window> m_xRefEdit; std::vector<VclPtr<vcl::Window>> m_aHiddenWidgets; // vector of hidden Controls @@ -551,8 +552,10 @@ public: class SalInstanceAssistant : public SalInstanceDialog, public virtual weld::Assistant { -private: +protected: VclPtr<vcl::RoadmapWizard> m_xWizard; + +private: std::vector<std::unique_ptr<SalInstanceContainer>> m_aPages; std::vector<VclPtr<TabPage>> m_aAddedPages; std::vector<int> m_aIds; |