diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-25 14:09:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-25 18:16:34 +0200 |
commit | b94214350e6e3d0252c09f203a3ce7807a179f90 (patch) | |
tree | 19786e0e6f6a055e562fc39f914b0b53ce93e65e /sd/source/ui/inc/assclass.hxx | |
parent | dcbe802509e465b5f7ef9391d0d1ba12b5c7e6c0 (diff) |
weld SdPublishingDlg
Change-Id: I64ce16c8b107b8b4d6009e6e2d5775cbf173a019
Reviewed-on: https://gerrit.libreoffice.org/76334
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source/ui/inc/assclass.hxx')
-rw-r--r-- | sd/source/ui/inc/assclass.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sd/source/ui/inc/assclass.hxx b/sd/source/ui/inc/assclass.hxx index 87cbb4e77c16..4774f397cedd 100644 --- a/sd/source/ui/inc/assclass.hxx +++ b/sd/source/ui/inc/assclass.hxx @@ -23,17 +23,16 @@ #include <memory> #include <sddllapi.h> -#include <vcl/window.hxx> #define MAX_PAGES 10 -namespace vcl { class Window; } +namespace weld { class Widget; } class SD_DLLPUBLIC Assistent { /** contains for every page the controls, which have to be connected? correctly */ - std::vector<VclPtr<vcl::Window> > maPages[MAX_PAGES]; + std::vector<weld::Widget*> maPages[MAX_PAGES]; /// number of pages int mnPages; @@ -51,7 +50,7 @@ public: void DisablePage( int nPage ); /// adds a control to the specified page - bool InsertControl(int nDestPage, vcl::Window* pUsedControl); + bool InsertControl(int nDestPage, weld::Widget* pUsedControl); void NextPage(); |