From 7af90cc93b76996f0f338c6a1285997531281e75 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Sun, 8 Jul 2018 15:01:23 +0200 Subject: Add missing sal/log.hxx headers rtl/string.hxx and rtl/ustring.hxx both unnecessarily #include (and don't make use of it themselves), but many other files happen to depend on it. This is a continuation of commit 6ff2d84ade299cb3d14d4110e4cf1a4b8070c030 to be able to remove those unneeded includes. This commit adds missing headers to every file found by: grep -FwL sal/log.hxx $(git grep -Elw 'SAL_INFO|SAL_INFO_IF|SAL_WARN|SAL_WARN_IF|SAL_DETAIL_LOG_STREAM|SAL_WHERE|SAL_STREAM|SAL_DEBUG') to directories from a* to configmgr Change-Id: I6ea1a7f992b1f835f5bac7a725e1135abee3f85a Reviewed-on: https://gerrit.libreoffice.org/57170 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- chart2/source/controller/accessibility/AccessibleBase.cxx | 1 + chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx | 2 ++ chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx | 1 + chart2/source/controller/dialogs/ObjectNameProvider.cxx | 1 + chart2/source/controller/dialogs/res_ErrorBar.cxx | 1 + chart2/source/controller/dialogs/tp_ChartType.cxx | 1 + chart2/source/controller/drawinglayer/ViewElementListProvider.cxx | 1 + chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx | 1 + chart2/source/controller/itemsetwrapper/ItemConverter.cxx | 1 + chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx | 1 + chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx | 1 + chart2/source/controller/main/ChartController.cxx | 1 + chart2/source/controller/main/ChartController_Insert.cxx | 1 + chart2/source/controller/main/ChartController_Position.cxx | 1 + chart2/source/controller/main/ChartController_Properties.cxx | 1 + chart2/source/controller/main/ChartController_Window.cxx | 1 + chart2/source/controller/main/ControllerCommandDispatch.cxx | 1 + chart2/source/controller/main/ToolbarController.cxx | 1 + chart2/source/model/filter/XMLFilter.cxx | 1 + chart2/source/model/main/ChartModel.cxx | 1 + chart2/source/model/main/ChartModel_Persistence.cxx | 1 + chart2/source/model/template/ChartTypeManager.cxx | 1 + chart2/source/model/template/DataInterpreter.cxx | 1 + chart2/source/model/template/XYDataInterpreter.cxx | 1 + chart2/source/tools/AxisHelper.cxx | 1 + chart2/source/tools/ChartModelHelper.cxx | 1 + chart2/source/tools/DataSeriesHelper.cxx | 1 + chart2/source/tools/DiagramHelper.cxx | 1 + chart2/source/tools/ErrorBar.cxx | 1 + chart2/source/tools/LifeTime.cxx | 1 + chart2/source/tools/NumberFormatterWrapper.cxx | 1 + chart2/source/tools/ThreeDHelper.cxx | 1 + chart2/source/tools/TitleHelper.cxx | 1 + chart2/source/tools/WrappedPropertySet.cxx | 1 + chart2/source/view/axes/VAxisProperties.cxx | 2 ++ chart2/source/view/axes/VCartesianAxis.cxx | 1 + chart2/source/view/axes/VCoordinateSystem.cxx | 1 + chart2/source/view/charttypes/AreaChart.cxx | 1 + chart2/source/view/charttypes/BarChart.cxx | 1 + chart2/source/view/charttypes/BubbleChart.cxx | 1 + chart2/source/view/charttypes/CandleStickChart.cxx | 1 + chart2/source/view/charttypes/PieChart.cxx | 1 + chart2/source/view/charttypes/VSeriesPlotter.cxx | 1 + chart2/source/view/diagram/VDiagram.cxx | 1 + chart2/source/view/main/3DChartObjects.cxx | 1 + chart2/source/view/main/AbstractShapeFactory.cxx | 1 + chart2/source/view/main/ChartView.cxx | 1 + chart2/source/view/main/DummyXShape.cxx | 1 + chart2/source/view/main/OpenGLRender.cxx | 1 + chart2/source/view/main/OpenglShapeFactory.cxx | 1 + chart2/source/view/main/PropertyMapper.cxx | 1 + chart2/source/view/main/ShapeFactory.cxx | 1 + chart2/source/view/main/VDataSeries.cxx | 1 + chart2/source/view/main/VLegendSymbolFactory.cxx | 1 + chart2/source/view/main/VLineProperties.cxx | 1 + chart2/source/view/main/VTitle.cxx | 1 + 56 files changed, 58 insertions(+) (limited to 'chart2') diff --git a/chart2/source/controller/accessibility/AccessibleBase.cxx b/chart2/source/controller/accessibility/AccessibleBase.cxx index a93ac3af7d2a..f090ddd8b454 100644 --- a/chart2/source/controller/accessibility/AccessibleBase.cxx +++ b/chart2/source/controller/accessibility/AccessibleBase.cxx @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include diff --git a/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx b/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx index cce7e84dccbf..25ca7282567b 100644 --- a/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx +++ b/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx @@ -22,6 +22,8 @@ #include #include +#include + #include #include diff --git a/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx b/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx index 10a756ef1f9c..8ec8cb51464b 100644 --- a/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx +++ b/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx @@ -34,6 +34,7 @@ #include #include #include +#include using namespace ::com::sun::star; using ::com::sun::star::uno::Any; diff --git a/chart2/source/controller/dialogs/ObjectNameProvider.cxx b/chart2/source/controller/dialogs/ObjectNameProvider.cxx index 163592ac420c..f6af402eca65 100644 --- a/chart2/source/controller/dialogs/ObjectNameProvider.cxx +++ b/chart2/source/controller/dialogs/ObjectNameProvider.cxx @@ -32,6 +32,7 @@ #include #include #include +#include #include #include diff --git a/chart2/source/controller/dialogs/res_ErrorBar.cxx b/chart2/source/controller/dialogs/res_ErrorBar.cxx index bc52d9fe0cb0..15ce9829516a 100644 --- a/chart2/source/controller/dialogs/res_ErrorBar.cxx +++ b/chart2/source/controller/dialogs/res_ErrorBar.cxx @@ -26,6 +26,7 @@ #include #include +#include #include #include #include diff --git a/chart2/source/controller/dialogs/tp_ChartType.cxx b/chart2/source/controller/dialogs/tp_ChartType.cxx index 454d37282ddf..79a66e74034d 100644 --- a/chart2/source/controller/dialogs/tp_ChartType.cxx +++ b/chart2/source/controller/dialogs/tp_ChartType.cxx @@ -33,6 +33,7 @@ #include #include #include +#include namespace chart { diff --git a/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx b/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx index 4af744d6477f..33f60b254856 100644 --- a/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx +++ b/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx @@ -42,6 +42,7 @@ #include #include #include +#include namespace chart { diff --git a/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx b/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx index 87886016a366..5dc89f2aafd1 100644 --- a/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx +++ b/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx @@ -37,6 +37,7 @@ #include #include +#include #include #include #include diff --git a/chart2/source/controller/itemsetwrapper/ItemConverter.cxx b/chart2/source/controller/itemsetwrapper/ItemConverter.cxx index 299bd30eee71..64755663375e 100644 --- a/chart2/source/controller/itemsetwrapper/ItemConverter.cxx +++ b/chart2/source/controller/itemsetwrapper/ItemConverter.cxx @@ -27,6 +27,7 @@ #include #include #include +#include using namespace ::com::sun::star; diff --git a/chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx b/chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx index 4c7c9071e251..49b71f6dc1d1 100644 --- a/chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx +++ b/chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx @@ -37,6 +37,7 @@ #include #include #include +#include #include #include diff --git a/chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx b/chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx index 9dd03bf7ace3..a913c93a2277 100644 --- a/chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx +++ b/chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx @@ -27,6 +27,7 @@ #include "SchWhichPairs.hxx" #include +#include #include #include #include diff --git a/chart2/source/controller/main/ChartController.cxx b/chart2/source/controller/main/ChartController.cxx index b59a21dbbd24..c42390ad9b53 100644 --- a/chart2/source/controller/main/ChartController.cxx +++ b/chart2/source/controller/main/ChartController.cxx @@ -69,6 +69,7 @@ #include #include +#include #include #include #include diff --git a/chart2/source/controller/main/ChartController_Insert.cxx b/chart2/source/controller/main/ChartController_Insert.cxx index 6713633a7b1d..4062334cdeb4 100644 --- a/chart2/source/controller/main/ChartController_Insert.cxx +++ b/chart2/source/controller/main/ChartController_Insert.cxx @@ -57,6 +57,7 @@ #include #include +#include #include using namespace ::com::sun::star; diff --git a/chart2/source/controller/main/ChartController_Position.cxx b/chart2/source/controller/main/ChartController_Position.cxx index dc7c194b87dc..5746569a5836 100644 --- a/chart2/source/controller/main/ChartController_Position.cxx +++ b/chart2/source/controller/main/ChartController_Position.cxx @@ -30,6 +30,7 @@ #include #include +#include #include #include #include diff --git a/chart2/source/controller/main/ChartController_Properties.cxx b/chart2/source/controller/main/ChartController_Properties.cxx index ff78fbf7e9d7..53962bfb2965 100644 --- a/chart2/source/controller/main/ChartController_Properties.cxx +++ b/chart2/source/controller/main/ChartController_Properties.cxx @@ -56,6 +56,7 @@ #include +#include #include #include diff --git a/chart2/source/controller/main/ChartController_Window.cxx b/chart2/source/controller/main/ChartController_Window.cxx index 66bb107b185e..a7d12d1c5388 100644 --- a/chart2/source/controller/main/ChartController_Window.cxx +++ b/chart2/source/controller/main/ChartController_Window.cxx @@ -77,6 +77,7 @@ #include #include #include +#include #define DRGPIX 2 // Drag MinMove in Pixel diff --git a/chart2/source/controller/main/ControllerCommandDispatch.cxx b/chart2/source/controller/main/ControllerCommandDispatch.cxx index 2e655741eac5..4f22c0d224d7 100644 --- a/chart2/source/controller/main/ControllerCommandDispatch.cxx +++ b/chart2/source/controller/main/ControllerCommandDispatch.cxx @@ -33,6 +33,7 @@ #include "ShapeController.hxx" #include +#include #include #include diff --git a/chart2/source/controller/main/ToolbarController.cxx b/chart2/source/controller/main/ToolbarController.cxx index 9d1f5b7a5be7..895413d2b9e7 100644 --- a/chart2/source/controller/main/ToolbarController.cxx +++ b/chart2/source/controller/main/ToolbarController.cxx @@ -18,6 +18,7 @@ #include #include #include +#include namespace chart { diff --git a/chart2/source/model/filter/XMLFilter.cxx b/chart2/source/model/filter/XMLFilter.cxx index f9ca9cdcd40a..91fb9b1b9d85 100644 --- a/chart2/source/model/filter/XMLFilter.cxx +++ b/chart2/source/model/filter/XMLFilter.cxx @@ -49,6 +49,7 @@ #include #include #include +#include using namespace ::com::sun::star; diff --git a/chart2/source/model/main/ChartModel.cxx b/chart2/source/model/main/ChartModel.cxx index 08c905f5202e..4eabcba9560c 100644 --- a/chart2/source/model/main/ChartModel.cxx +++ b/chart2/source/model/main/ChartModel.cxx @@ -67,6 +67,7 @@ #include #include +#include #include #include diff --git a/chart2/source/model/main/ChartModel_Persistence.cxx b/chart2/source/model/main/ChartModel_Persistence.cxx index dabde5d32ba4..2ad26d567268 100644 --- a/chart2/source/model/main/ChartModel_Persistence.cxx +++ b/chart2/source/model/main/ChartModel_Persistence.cxx @@ -56,6 +56,7 @@ #include #include #include +#include #include diff --git a/chart2/source/model/template/ChartTypeManager.cxx b/chart2/source/model/template/ChartTypeManager.cxx index bb9656f76692..6028279d8b35 100644 --- a/chart2/source/model/template/ChartTypeManager.cxx +++ b/chart2/source/model/template/ChartTypeManager.cxx @@ -42,6 +42,7 @@ #include #include #include +#include #include #include diff --git a/chart2/source/model/template/DataInterpreter.cxx b/chart2/source/model/template/DataInterpreter.cxx index bc81e3821cb0..dde227a99d98 100644 --- a/chart2/source/model/template/DataInterpreter.cxx +++ b/chart2/source/model/template/DataInterpreter.cxx @@ -26,6 +26,7 @@ #include #include #include +#include #include #include diff --git a/chart2/source/model/template/XYDataInterpreter.cxx b/chart2/source/model/template/XYDataInterpreter.cxx index e54abe2f285c..9b2819d4d02e 100644 --- a/chart2/source/model/template/XYDataInterpreter.cxx +++ b/chart2/source/model/template/XYDataInterpreter.cxx @@ -25,6 +25,7 @@ #include #include #include +#include using namespace ::com::sun::star; using namespace ::com::sun::star::chart2; diff --git a/chart2/source/tools/AxisHelper.cxx b/chart2/source/tools/AxisHelper.cxx index 79fb6b92a3c8..fba7822fc127 100644 --- a/chart2/source/tools/AxisHelper.cxx +++ b/chart2/source/tools/AxisHelper.cxx @@ -42,6 +42,7 @@ #include #include +#include #include #include diff --git a/chart2/source/tools/ChartModelHelper.cxx b/chart2/source/tools/ChartModelHelper.cxx index 7ff25c70df0e..7ccd373dcb32 100644 --- a/chart2/source/tools/ChartModelHelper.cxx +++ b/chart2/source/tools/ChartModelHelper.cxx @@ -36,6 +36,7 @@ #include #include #include +#include namespace chart { diff --git a/chart2/source/tools/DataSeriesHelper.cxx b/chart2/source/tools/DataSeriesHelper.cxx index 59bea3f0b7ea..e54c5d2eadde 100644 --- a/chart2/source/tools/DataSeriesHelper.cxx +++ b/chart2/source/tools/DataSeriesHelper.cxx @@ -39,6 +39,7 @@ #include #include #include +#include #include #include diff --git a/chart2/source/tools/DiagramHelper.cxx b/chart2/source/tools/DiagramHelper.cxx index 652a4e468841..20e5a2111755 100644 --- a/chart2/source/tools/DiagramHelper.cxx +++ b/chart2/source/tools/DiagramHelper.cxx @@ -59,6 +59,7 @@ #include #include #include +#include using namespace ::com::sun::star; using namespace ::com::sun::star::chart2; diff --git a/chart2/source/tools/ErrorBar.cxx b/chart2/source/tools/ErrorBar.cxx index 3ea38e528e67..e034af78c5fd 100644 --- a/chart2/source/tools/ErrorBar.cxx +++ b/chart2/source/tools/ErrorBar.cxx @@ -39,6 +39,7 @@ #include #include #include +#include using namespace ::com::sun::star; diff --git a/chart2/source/tools/LifeTime.cxx b/chart2/source/tools/LifeTime.cxx index 3588bac6331e..85349fe6bd2c 100644 --- a/chart2/source/tools/LifeTime.cxx +++ b/chart2/source/tools/LifeTime.cxx @@ -23,6 +23,7 @@ #include #include #include +#include using namespace ::com::sun::star; diff --git a/chart2/source/tools/NumberFormatterWrapper.cxx b/chart2/source/tools/NumberFormatterWrapper.cxx index ce801820d837..52879263a352 100644 --- a/chart2/source/tools/NumberFormatterWrapper.cxx +++ b/chart2/source/tools/NumberFormatterWrapper.cxx @@ -24,6 +24,7 @@ #include #include #include +#include namespace chart { diff --git a/chart2/source/tools/ThreeDHelper.cxx b/chart2/source/tools/ThreeDHelper.cxx index 9ba6b85aefe4..25da0b374de3 100644 --- a/chart2/source/tools/ThreeDHelper.cxx +++ b/chart2/source/tools/ThreeDHelper.cxx @@ -30,6 +30,7 @@ #include #include #include +#include namespace chart { diff --git a/chart2/source/tools/TitleHelper.cxx b/chart2/source/tools/TitleHelper.cxx index 9a597b56c61c..f93798d4aee4 100644 --- a/chart2/source/tools/TitleHelper.cxx +++ b/chart2/source/tools/TitleHelper.cxx @@ -25,6 +25,7 @@ #include #include #include +#include namespace chart { diff --git a/chart2/source/tools/WrappedPropertySet.cxx b/chart2/source/tools/WrappedPropertySet.cxx index 8ffe2e27b04f..4884716fa71b 100644 --- a/chart2/source/tools/WrappedPropertySet.cxx +++ b/chart2/source/tools/WrappedPropertySet.cxx @@ -21,6 +21,7 @@ #include #include +#include namespace chart { diff --git a/chart2/source/view/axes/VAxisProperties.cxx b/chart2/source/view/axes/VAxisProperties.cxx index a3e56aeaf4ba..8597544e169b 100644 --- a/chart2/source/view/axes/VAxisProperties.cxx +++ b/chart2/source/view/axes/VAxisProperties.cxx @@ -29,6 +29,8 @@ #include #include +#include + using namespace ::com::sun::star; using namespace ::com::sun::star::chart2; diff --git a/chart2/source/view/axes/VCartesianAxis.cxx b/chart2/source/view/axes/VCartesianAxis.cxx index b52ab1e5e642..903e3b38405a 100644 --- a/chart2/source/view/axes/VCartesianAxis.cxx +++ b/chart2/source/view/axes/VCartesianAxis.cxx @@ -37,6 +37,7 @@ #include #include #include +#include #include #include diff --git a/chart2/source/view/axes/VCoordinateSystem.cxx b/chart2/source/view/axes/VCoordinateSystem.cxx index f4e051b47ee4..5cd0c127d1ca 100644 --- a/chart2/source/view/axes/VCoordinateSystem.cxx +++ b/chart2/source/view/axes/VCoordinateSystem.cxx @@ -39,6 +39,7 @@ #include #include #include +#include #include #include diff --git a/chart2/source/view/charttypes/AreaChart.cxx b/chart2/source/view/charttypes/AreaChart.cxx index 7ecf7e9ebeeb..5b94b31acedb 100644 --- a/chart2/source/view/charttypes/AreaChart.cxx +++ b/chart2/source/view/charttypes/AreaChart.cxx @@ -38,6 +38,7 @@ #include #include +#include #include #include diff --git a/chart2/source/view/charttypes/BarChart.cxx b/chart2/source/view/charttypes/BarChart.cxx index cab13732b6a9..b757b1286c3b 100644 --- a/chart2/source/view/charttypes/BarChart.cxx +++ b/chart2/source/view/charttypes/BarChart.cxx @@ -36,6 +36,7 @@ #include #include #include +#include #include namespace chart diff --git a/chart2/source/view/charttypes/BubbleChart.cxx b/chart2/source/view/charttypes/BubbleChart.cxx index 8036f9e9aa42..ce25ee3b359f 100644 --- a/chart2/source/view/charttypes/BubbleChart.cxx +++ b/chart2/source/view/charttypes/BubbleChart.cxx @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include diff --git a/chart2/source/view/charttypes/CandleStickChart.cxx b/chart2/source/view/charttypes/CandleStickChart.cxx index 201aeafc928a..80b65eb9c78b 100644 --- a/chart2/source/view/charttypes/CandleStickChart.cxx +++ b/chart2/source/view/charttypes/CandleStickChart.cxx @@ -30,6 +30,7 @@ #include #include #include +#include namespace chart { diff --git a/chart2/source/view/charttypes/PieChart.cxx b/chart2/source/view/charttypes/PieChart.cxx index ec234ac26be2..de48a1d5e893 100644 --- a/chart2/source/view/charttypes/PieChart.cxx +++ b/chart2/source/view/charttypes/PieChart.cxx @@ -32,6 +32,7 @@ #include #include +#include #include diff --git a/chart2/source/view/charttypes/VSeriesPlotter.cxx b/chart2/source/view/charttypes/VSeriesPlotter.cxx index 92ede0fb1a2d..2172206fb8c8 100644 --- a/chart2/source/view/charttypes/VSeriesPlotter.cxx +++ b/chart2/source/view/charttypes/VSeriesPlotter.cxx @@ -86,6 +86,7 @@ #include #include #include +#include #include #include diff --git a/chart2/source/view/diagram/VDiagram.cxx b/chart2/source/view/diagram/VDiagram.cxx index a545e84a485b..655d472f50e3 100644 --- a/chart2/source/view/diagram/VDiagram.cxx +++ b/chart2/source/view/diagram/VDiagram.cxx @@ -40,6 +40,7 @@ #include #include #include +#include namespace chart { diff --git a/chart2/source/view/main/3DChartObjects.cxx b/chart2/source/view/main/3DChartObjects.cxx index f4dcd0d3a62c..538308bfd539 100644 --- a/chart2/source/view/main/3DChartObjects.cxx +++ b/chart2/source/view/main/3DChartObjects.cxx @@ -10,6 +10,7 @@ #include <3DChartObjects.hxx> #include #include +#include #include #include diff --git a/chart2/source/view/main/AbstractShapeFactory.cxx b/chart2/source/view/main/AbstractShapeFactory.cxx index 840878e2200f..58b3a9695e6b 100644 --- a/chart2/source/view/main/AbstractShapeFactory.cxx +++ b/chart2/source/view/main/AbstractShapeFactory.cxx @@ -36,6 +36,7 @@ #include #include #include +#include #include #include diff --git a/chart2/source/view/main/ChartView.cxx b/chart2/source/view/main/ChartView.cxx index 0e16536e7267..566f84244c72 100644 --- a/chart2/source/view/main/ChartView.cxx +++ b/chart2/source/view/main/ChartView.cxx @@ -120,6 +120,7 @@ #include #include +#include #include #include diff --git a/chart2/source/view/main/DummyXShape.cxx b/chart2/source/view/main/DummyXShape.cxx index 035353dbd795..e7ebaf102a44 100644 --- a/chart2/source/view/main/DummyXShape.cxx +++ b/chart2/source/view/main/DummyXShape.cxx @@ -19,6 +19,7 @@ #include #include +#include #include #include diff --git a/chart2/source/view/main/OpenGLRender.cxx b/chart2/source/view/main/OpenGLRender.cxx index 56e46040ac5e..f461bb80f290 100644 --- a/chart2/source/view/main/OpenGLRender.cxx +++ b/chart2/source/view/main/OpenGLRender.cxx @@ -33,6 +33,7 @@ #include #include #include +#include #include diff --git a/chart2/source/view/main/OpenglShapeFactory.cxx b/chart2/source/view/main/OpenglShapeFactory.cxx index e6c4980b8017..b1169292090c 100644 --- a/chart2/source/view/main/OpenglShapeFactory.cxx +++ b/chart2/source/view/main/OpenglShapeFactory.cxx @@ -47,6 +47,7 @@ #include #include #include +#include #include #include diff --git a/chart2/source/view/main/PropertyMapper.cxx b/chart2/source/view/main/PropertyMapper.cxx index 4a4c65833c59..7427b280edd5 100644 --- a/chart2/source/view/main/PropertyMapper.cxx +++ b/chart2/source/view/main/PropertyMapper.cxx @@ -19,6 +19,7 @@ #include #include +#include #include #include diff --git a/chart2/source/view/main/ShapeFactory.cxx b/chart2/source/view/main/ShapeFactory.cxx index f92742727165..8e3f67bb18b1 100644 --- a/chart2/source/view/main/ShapeFactory.cxx +++ b/chart2/source/view/main/ShapeFactory.cxx @@ -59,6 +59,7 @@ #include #include #include +#include #include diff --git a/chart2/source/view/main/VDataSeries.cxx b/chart2/source/view/main/VDataSeries.cxx index 80655b8bd31e..22237347db42 100644 --- a/chart2/source/view/main/VDataSeries.cxx +++ b/chart2/source/view/main/VDataSeries.cxx @@ -32,6 +32,7 @@ #include #include +#include #include #include #include diff --git a/chart2/source/view/main/VLegendSymbolFactory.cxx b/chart2/source/view/main/VLegendSymbolFactory.cxx index cae5ee197144..0112682bb7c4 100644 --- a/chart2/source/view/main/VLegendSymbolFactory.cxx +++ b/chart2/source/view/main/VLegendSymbolFactory.cxx @@ -27,6 +27,7 @@ #include #include #include +#include using namespace ::com::sun::star; using ::com::sun::star::uno::Reference; diff --git a/chart2/source/view/main/VLineProperties.cxx b/chart2/source/view/main/VLineProperties.cxx index 2f79f0e56391..128ea8a82cfe 100644 --- a/chart2/source/view/main/VLineProperties.cxx +++ b/chart2/source/view/main/VLineProperties.cxx @@ -20,6 +20,7 @@ #include #include #include +#include namespace chart { diff --git a/chart2/source/view/main/VTitle.cxx b/chart2/source/view/main/VTitle.cxx index 3ef4e161bc15..7b74b93da35b 100644 --- a/chart2/source/view/main/VTitle.cxx +++ b/chart2/source/view/main/VTitle.cxx @@ -27,6 +27,7 @@ #include #include #include +#include namespace chart { -- cgit