diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-04-06 09:15:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-04-06 17:32:51 +0200 |
commit | b1253218e428640c0079916ddd5688c8fbb7171e (patch) | |
tree | 61fcd23c92f2e737be9d63a049bc6bc1651b415e /chart2 | |
parent | b6fa0c15af7ea06a71d65e03204376fce7766ee9 (diff) |
forward declare vcl::window in vcl/event.hxx
Change-Id: Ib3fc1b72d3d45377e2d4ccd0ff3e6835d2c29930
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113631
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/inc/ChartController.hxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/chart2/source/controller/inc/ChartController.hxx b/chart2/source/controller/inc/ChartController.hxx index 582573dc7612..09fda2b6fb00 100644 --- a/chart2/source/controller/inc/ChartController.hxx +++ b/chart2/source/controller/inc/ChartController.hxx @@ -55,6 +55,7 @@ namespace com::sun::star::awt { struct Point; } namespace com::sun::star::document { class XUndoManager; } namespace com::sun::star::frame { class XDispatch; } namespace com::sun::star::frame { class XLayoutManagerEventBroadcaster; } +namespace com::sun::star::graphic { class XGraphic; } namespace com::sun::star::lang { class XInitialization; } namespace com::sun::star::uno { class XComponentContext; } namespace com::sun::star::util { class XCloseable; } @@ -72,14 +73,12 @@ namespace svx::sidebar { class SelectionChangeHandler; } -class DropTargetHelper; - -namespace com::sun::star { - namespace graphic { - class XGraphic; - } +namespace weld { + class Window; } +class DropTargetHelper; + namespace chart { |