diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-11-07 16:12:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-07 19:20:17 +0100 |
commit | a0e0575dcf4fede5c6e20636c63042d8c62ecf77 (patch) | |
tree | af00fa7be111a91cc2ff61d8f6d9fb0d945a3231 /chart2 | |
parent | efd2510e225232ac35707a3ed55b83be9fa046af (diff) |
forward decls go after #include
Change-Id: I54c33508639044092356eed5144720261b4f65db
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124816
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/inc/ObjectHierarchy.hxx | 5 | ||||
-rw-r--r-- | chart2/source/controller/inc/dlg_DataSource.hxx | 7 |
2 files changed, 4 insertions, 8 deletions
diff --git a/chart2/source/controller/inc/ObjectHierarchy.hxx b/chart2/source/controller/inc/ObjectHierarchy.hxx index 9c50517d2fc6..bac8deec2204 100644 --- a/chart2/source/controller/inc/ObjectHierarchy.hxx +++ b/chart2/source/controller/inc/ObjectHierarchy.hxx @@ -19,13 +19,12 @@ #pragma once #include <ObjectIdentifier.hxx> +#include <map> +#include <vector> namespace com::sun::star::awt { struct KeyEvent; } namespace com::sun::star::chart2 { class XChartDocument; } -#include <map> -#include <vector> - namespace chart { diff --git a/chart2/source/controller/inc/dlg_DataSource.hxx b/chart2/source/controller/inc/dlg_DataSource.hxx index 1e505ff63ef6..b1607bc0ccd6 100644 --- a/chart2/source/controller/inc/dlg_DataSource.hxx +++ b/chart2/source/controller/inc/dlg_DataSource.hxx @@ -18,15 +18,12 @@ */ #pragma once -#include <vcl/weld.hxx> - #include "TabPageNotifiable.hxx" +#include <vcl/weld.hxx> +#include <memory> namespace com::sun::star::chart2 { class XChartDocument; } namespace com::sun::star::uno { class XComponentContext; } - -#include <memory> - class BuilderPage; namespace chart |