diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-04-12 08:59:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-04-12 14:39:15 +0200 |
commit | 6dcb611a99b61c7f2056c48a0dd1adf1c24275da (patch) | |
tree | 9e958cba421aefe76c9c2140aa7b139245ab403f /include/vcl/uitest/uiobject.hxx | |
parent | be82f6313f298c13a2f040b218c6f2a33705ff8c (diff) |
forward decl vcl::Window in uiobject.hxx
Change-Id: Ic4355a7cbf15e211b820e8343638100f729b4189
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113969
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl/uitest/uiobject.hxx')
-rw-r--r-- | include/vcl/uitest/uiobject.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/vcl/uitest/uiobject.hxx b/include/vcl/uitest/uiobject.hxx index c9f2b922a792..1a2c192a4c63 100644 --- a/include/vcl/uitest/uiobject.hxx +++ b/include/vcl/uitest/uiobject.hxx @@ -14,7 +14,8 @@ #include <map> #include <memory> -#include <vcl/window.hxx> +#include <vcl/vclevent.hxx> +#include <vcl/vclptr.hxx> #include <vcl/dllapi.h> #include <set> @@ -38,6 +39,7 @@ class VclDrawingArea; class VclMultiLineEdit; class MenuButton; class ToolBox; +namespace vcl { class Window; } namespace weld { class CustomWidgetController; } typedef std::map<OUString, OUString> StringMap; |