From 64d8a71eb8ced0b701ba86e5cf066af48f98872f Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Tue, 19 Nov 2019 11:18:15 +0100 Subject: tdf#42949 tdf#119699 Fix IWYU warnings in chart2/ * Recheck after recent refactorings and improvements in f-u-i * Drop now unused TabPageIds.h * The problem noticed in bug #119699 now seems to be gone too so drop those lines from the blacklist. Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: I44f26c7370f5328c8f67ac61cd8f0cdb29077f15 Reviewed-on: https://gerrit.libreoffice.org/83182 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- chart2/IwyuFilter_chart2.yaml | 293 +++++++++++++++++---- chart2/inc/SpecialCharacters.hxx | 2 + .../controller/accessibility/AccessibleBase.cxx | 2 +- .../chartapiwrapper/WrappedSymbolProperties.cxx | 1 - chart2/source/controller/dialogs/DataBrowser.cxx | 1 - .../controller/dialogs/ObjectNameProvider.cxx | 1 - chart2/source/controller/dialogs/TabPageIds.h | 44 ---- .../controller/dialogs/dlg_CreationWizard.cxx | 1 - .../controller/dialogs/dlg_CreationWizard_UNO.cxx | 1 - .../source/controller/dialogs/dlg_DataEditor.cxx | 4 - chart2/source/controller/dialogs/dlg_View3D.cxx | 1 - chart2/source/controller/dialogs/res_ErrorBar.cxx | 1 - chart2/source/controller/dialogs/tp_ChartType.cxx | 3 - chart2/source/controller/dialogs/tp_ErrorBars.cxx | 2 - chart2/source/controller/dialogs/tp_Trendline.cxx | 2 - .../drawinglayer/ViewElementListProvider.cxx | 1 - chart2/source/controller/inc/ItemPropertyMap.hxx | 2 + .../controller/inc/dlg_CreationWizard_UNO.hxx | 2 - chart2/source/controller/inc/dlg_DataSource.hxx | 1 - .../itemsetwrapper/DataPointItemConverter.cxx | 1 - .../itemsetwrapper/SeriesOptionsItemConverter.cxx | 1 - .../itemsetwrapper/TextLabelItemConverter.cxx | 1 - .../controller/main/ChartController_Insert.cxx | 1 - .../controller/main/ChartController_Position.cxx | 2 - .../controller/main/ChartController_Properties.cxx | 1 - .../controller/main/ChartController_Tools.cxx | 1 - chart2/source/controller/main/ShapeController.cxx | 1 - .../controller/main/StatusBarCommandDispatch.cxx | 1 - .../source/controller/sidebar/ChartTypePanel.cxx | 25 +- .../source/controller/sidebar/ChartTypePanel.hxx | 1 - chart2/source/inc/AxisIndexDefines.hxx | 2 + chart2/source/inc/ChartResourceGroups.hxx | 5 +- chart2/source/inc/FormattedStringHelper.hxx | 1 - chart2/source/inc/MediaDescriptorHelper.hxx | 1 + chart2/source/inc/ModifyListenerHelper.hxx | 1 - chart2/source/inc/RegressionCalculationHelper.hxx | 2 + chart2/source/inc/TrueGuard.hxx | 2 - chart2/source/model/filter/XMLFilter.cxx | 1 - chart2/source/tools/ChartModelHelper.cxx | 1 - chart2/source/tools/DataSeriesHelper.cxx | 1 - chart2/source/tools/ImplOPropertySet.hxx | 1 + chart2/source/tools/ThreeDHelper.cxx | 1 - chart2/source/view/axes/VAxisProperties.cxx | 1 - chart2/source/view/axes/VCartesianAxis.cxx | 1 - chart2/source/view/axes/VCoordinateSystem.cxx | 1 - chart2/source/view/charttypes/CandleStickChart.cxx | 1 - chart2/source/view/charttypes/ConfigAccess.cxx | 3 +- chart2/source/view/diagram/VDiagram.cxx | 2 - chart2/source/view/inc/PropertyMapper.hxx | 2 - chart2/source/view/inc/ViewDefines.hxx | 2 + chart2/source/view/main/ChartView.cxx | 1 - chart2/source/view/main/Linear3DTransformation.cxx | 1 - chart2/source/view/main/PropertyMapper.cxx | 1 - chart2/source/view/main/VDataSeries.cxx | 1 - chart2/source/view/main/VLineProperties.cxx | 1 - chart2/source/view/main/VPolarTransformation.cxx | 1 - chart2/source/view/main/VTitle.cxx | 1 - solenv/clang-format/blacklist | 1 - 58 files changed, 255 insertions(+), 186 deletions(-) delete mode 100644 chart2/source/controller/dialogs/TabPageIds.h diff --git a/chart2/IwyuFilter_chart2.yaml b/chart2/IwyuFilter_chart2.yaml index 445a9f7d60eb..fba041a9feb3 100644 --- a/chart2/IwyuFilter_chart2.yaml +++ b/chart2/IwyuFilter_chart2.yaml @@ -200,6 +200,9 @@ blacklist: - com/sun/star/io/XActiveDataSource.hpp - com/sun/star/lang/XMultiServiceFactory.hpp - com/sun/star/lang/XServiceInfo.hpp + chart2/source/model/filter/XMLFilter.cxx: + # Actually used + - com/sun/star/lang/XMultiComponentFactory.hpp chart2/source/model/main/DataPoint.hxx: # base class has to be a complete type - com/sun/star/container/XChild.hpp @@ -225,6 +228,8 @@ blacklist: # Needed for template - com/sun/star/chart2/RelativePosition.hpp - com/sun/star/chart2/RelativeSize.hpp + # Actually used + - com/sun/star/uno/XComponentContext.hpp chart2/source/model/main/FormattedString.hxx: # base class has to be a complete type - com/sun/star/chart2/XDataPointCustomLabelField.hpp @@ -292,9 +297,65 @@ blacklist: # base class has to be a complete type - com/sun/star/chart2/XDataInterpreter.hpp - com/sun/star/lang/XServiceInfo.hpp + chart2/source/model/template/AreaChartTypeTemplate.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/model/template/BubbleChartTypeTemplate.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/model/template/BarChartTypeTemplate.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/model/template/ChartTypeTemplate.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/model/template/ChartTypeManager.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/model/template/ColumnLineChartTypeTemplate.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/model/template/NetChartTypeTemplate.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/model/template/LineChartTypeTemplate.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/model/template/ScatterChartTypeTemplate.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/model/template/StockChartTypeTemplate.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/model/template/PieChartTypeTemplate.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp chart2/source/model/template/XYDataInterpreter.cxx: # Used after #ifdef - sal/log.hxx + chart2/source/tools/AxisHelper.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/tools/BaseGFXHelper.cxx: + # Actually used + - com/sun/star/drawing/PolyPolygonShape3D.hpp + - com/sun/star/awt/Rectangle.hpp + chart2/source/tools/CommonConverters.cxx: + # Actually used + - com/sun/star/awt/Rectangle.hpp + - com/sun/star/drawing/PolyPolygonBezierCoords.hpp + - com/sun/star/chart2/data/XDataSequence.hpp + chart2/source/tools/ErrorBar.cxx: + # Actually used + - com/sun/star/drawing/LineStyle.hpp + - com/sun/star/util/Color.hpp + - com/sun/star/drawing/LineJoint.hpp + chart2/source/tools/CharacterProperties.cxx: + # Actually used + - com/sun/star/beans/XMultiPropertySet.hpp + chart2/source/tools/DataSourceHelper.cxx: + # Actually used + - com/sun/star/chart2/data/XLabeledDataSequence.hpp chart2/source/tools/RegressionCurveModel.hxx: # base class has to be a complete type - com/sun/star/chart2/XRegressionCurve.hpp @@ -306,21 +367,36 @@ blacklist: chart2/source/tools/ImplOPropertySet.cxx: # Needed for template - com/sun/star/style/XStyle.hpp + chart2/source/tools/LegendHelper.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp chart2/source/tools/LinePropertiesHelper.cxx: # Needed for template - com/sun/star/drawing/LineDash.hpp + # Actually used + - com/sun/star/beans/XPropertySet.hpp chart2/source/tools/LifeTime.cxx: # Has to be complete type - com/sun/star/util/CloseVetoException.hpp chart2/source/tools/MediaDescriptorHelper.cxx: # Needed for template - com/sun/star/embed/XStorage.hpp + # Actually used + - com/sun/star/beans/PropertyValue.hpp chart2/source/tools/ObjectIdentifier.cxx: # Needed for template - com/sun/star/drawing/XShape.hpp chart2/source/tools/RangeHighlighter.cxx: # Needed for template - com/sun/star/drawing/XShape.hpp + # Actually used + - com/sun/star/view/XSelectionSupplier.hpp + chart2/source/tools/ReferenceSizeProvider.cxx: + # Actually used + - com/sun/star/chart2/XTitle.hpp + chart2/source/tools/RegressionCurveHelper.cxx: + # Actually used + - com/sun/star/chart2/XRegressionCurveCalculator.hpp chart2/source/tools/RegressionEquation.hxx: # base class has to be a complete type - com/sun/star/chart2/XTitle.hpp @@ -332,11 +408,33 @@ blacklist: # Needed for template - com/sun/star/awt/Size.hpp - com/sun/star/chart2/RelativePosition.hpp + chart2/source/tools/RelativePositionHelper.cxx: + # Actually used + - com/sun/star/awt/Size.hpp + - com/sun/star/chart2/RelativeSize.hpp + # Needed for rtl::math::round + - rtl/math.hxx + chart2/source/tools/RelativeSizeHelper.cxx: + # Actually used + - com/sun/star/awt/Size.hpp + - com/sun/star/beans/XPropertySet.hpp + chart2/source/tools/PropertyHelper.cxx: + # Actually used + - com/sun/star/lang/XMultiServiceFactory.hpp + chart2/source/tools/StatisticsHelper.cxx: + # Actually used + - com/sun/star/chart2/data/XDataProvider.hpp + chart2/source/tools/UncachedDataSequence.cxx: + # Actually used + - com/sun/star/chart2/XInternalDataProvider.hpp chart2/source/tools/UserDefinedProperties.cxx: # Needs a complete type - com/sun/star/beans/Property.hpp # Needed for template - com/sun/star/container/XNameContainer.hpp + chart2/source/tools/WrappedProperty.cxx: + # Actually used + - com/sun/star/beans/XPropertyState.hpp chart2/source/view/inc/3DChartObjects.hxx: # base class has to be a complete type - boost/shared_array.hpp @@ -355,58 +453,64 @@ blacklist: - com/sun/star/chart2/XScaling.hpp - com/sun/star/lang/XServiceInfo.hpp - com/sun/star/lang/XServiceName.hpp - # TODO: in view/axes iwyu actually runs without - # -I/$SRCDIR/chart2/source/view/inc - # thus gives way more false positives - chart2/source/view/axes/VAxisOrGridBase.hxx: - # False positives - - ThreeDHelper.hxx - - basegfx/matrix/b3dhommatrix.hxx - chart2/source/view/axes/VAxisProperties.hxx: - # False positives - - com/sun/star/awt/Rectangle.hpp - - com/sun/star/awt/Size.hpp - - com/sun/star/chart/ChartAxisMarkPosition.hpp - - com/sun/star/chart/ChartAxisPosition.hpp - - com/sun/star/uno/Any.hxx - - vector - - TickmarkProperties.hxx + chart2/source/view/axes/VAxisBase.cxx: + # Needed for direct member access + - com/sun/star/drawing/XShapes.hpp + chart2/source/view/axes/VAxisProperties.cxx: + # Actually used + - com/sun/star/chart2/XAxis.hpp + # Needed for rtl::math::round + - rtl/math.hxx + chart2/source/view/axes/VCartesianCoordinateSystem.cxx: + # Actually used + - com/sun/star/chart2/XCoordinateSystem.hpp + chart2/source/view/axes/VPolarCoordinateSystem.cxx: + # Actually used + - com/sun/star/chart2/XCoordinateSystem.hpp chart2/source/view/axes/VCartesianGrid.hxx: # base class has to be a complete type - com/sun/star/beans/XPropertySet.hpp - chart2/source/view/axes/VPolarAxis.hxx: - # False positives - - memory - chart2/source/view/axes/VPolarGrid.hxx: - # False positives - - memory - chart2/source/view/axes/VPolarGrid.hxx: - # False positives - - com/sun/star/drawing/PointSequenceSequence.hpp - chart2/source/view/axes/VPolarRadiusAxis.hxx: - # False positives - - memory - chart2/source/view/axes/VPolarGrid.hxx: - # False positives - - memory - - com/sun/star/drawing/PointSequenceSequence.hpp - chart2/source/view/charttypes/BarChart.hxx: - # False positives - - memory - chart2/source/view/charttypes/CandleStickChart.hxx: - # False positives - - memory - chart2/source/view/charttypes/AreaChart.hxx: - # False positives - - memory - chart2/source/view/charttypes/NetChart.hxx: - # False positives - - memory - chart2/source/view/charttypes/PieChart.hxx: - # False positives - - memory - - basegfx/vector/b2ivector.hxx - - com/sun/star/awt/Point.hpp + chart2/source/view/charttypes/Splines.cxx: + # Actually used + - com/sun/star/drawing/PolyPolygonShape3D.hpp + chart2/source/view/charttypes/AreaChart.cxx: + # Actually used + - com/sun/star/drawing/XShapes.hpp + chart2/source/view/charttypes/NetChart.cxx: + # Actually used + - com/sun/star/drawing/XShapes.hpp + chart2/source/view/charttypes/BarChart.cxx: + # comphelper::ScopeGuard being used + - comphelper/scopeguard.hxx + chart2/source/view/main/LabelPositionHelper.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + - com/sun/star/drawing/XShape.hpp + chart2/source/view/main/VButton.cxx: + # Actually used + - com/sun/star/lang/XMultiServiceFactory.hpp + chart2/source/view/main/PlottingPositionHelper.cxx: + # Actually used + - com/sun/star/drawing/XShapes.hpp + chart2/source/view/main/PropertyMapper.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + chart2/source/view/main/ShapeFactory.cxx: + # Needed for template + - com/sun/star/graphic/XGraphic.hpp + # Actually used + - com/sun/star/chart2/XFormattedString.hpp + - com/sun/star/lang/XMultiServiceFactory.hpp + chart2/source/view/main/ChartView.cxx: + # comphelper::ScopeGuard being used + - comphelper/scopeguard.hxx + chart2/source/view/main/VLineProperties.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + chart2/source/view/main/VTitle.cxx: + # Actually used + - com/sun/star/chart2/XTitle.hpp + - com/sun/star/drawing/XShape.hpp chart2/source/controller/inc/AccessibleTextHelper.hxx: # base class has to be a complete type - com/sun/star/accessibility/XAccessibleContext.hpp @@ -484,18 +588,81 @@ blacklist: # base class has to be a complete type - AccessibleBase.hxx - com/sun/star/accessibility/XAccessibleExtendedComponent.hpp + chart2/source/controller/accessibility/AccessibleChartView.cxx: + # Actually used + - com/sun/star/view/XSelectionSupplier.hpp + chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx: + # Needed for rtl::math::round + - rtl/math.hxx chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx: # Needed for complex variable type - com/sun/star/util/XRefreshable.hpp chart2/source/controller/chartapiwrapper/WrappedAddInProperty.cxx: # Needed for complex variable type - com/sun/star/util/XRefreshable.hpp + chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + - com/sun/star/beans/XPropertyState.hpp + chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx: + # Actually used + - vector + chart2/source/controller/dialogs/ChartTypeDialogController.cxx: + # Actually used + - com/sun/star/chart2/XChartDocument.hpp chart2/source/controller/dialogs/DataBrowser.cxx: # Needed for complex variable type - com/sun/star/chart2/XChartDocument.hpp + chart2/source/controller/dialogs/DialogModel.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + - com/sun/star/chart2/XChartDocument.hpp chart2/source/controller/dialogs/dlg_ChartType_UNO.cxx: # Needed for complex variable type - com/sun/star/frame/XModel.hpp + chart2/source/controller/dialogs/dlg_DataEditor.cxx: + # Needed for direct member access + - com/sun/star/awt/XWindow.hpp + chart2/source/controller/dialogs/RangeSelectionHelper.cxx: + # Actually used + - com/sun/star/chart2/XChartDocument.hpp + chart2/source/controller/dialogs/res_ErrorBar.cxx: + # Actually used + - com/sun/star/chart2/XChartDocument.hpp + chart2/source/controller/dialogs/tp_AxisPositions.cxx: + # Actually used + - rtl/math.hxx + chart2/source/controller/dialogs/tp_3D_SceneIllumination.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + chart2/source/controller/dialogs/tp_ChartType.cxx: + # Actually used + - com/sun/star/chart2/XChartDocument.hpp + chart2/source/controller/itemsetwrapper/ItemConverter.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + chart2/source/controller/itemsetwrapper/LegendItemConverter.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + chart2/source/controller/itemsetwrapper/TitleItemConverter.cxx: + # Needed for rtl::math::round + - rtl/math.hxx + chart2/source/controller/itemsetwrapper/RegressionEquationItemConverter.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + chart2/source/controller/itemsetwrapper/CharacterPropertyItemConverter.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + chart2/source/controller/itemsetwrapper/GraphicPropertyItemConverter.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + - com/sun/star/lang/XMultiServiceFactory.hpp + chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx: + # Actually used + - com/sun/star/beans/XPropertySet.hpp + chart2/source/controller/itemsetwrapper/AxisItemConverter.cxx: + # Needed for rtl::math::round + - rtl/math.hxx chart2/source/controller/main/ChartModelClone.hxx: # Needed for implicit dtor - com/sun/star/uno/Any.hxx @@ -503,11 +670,20 @@ blacklist: # base class has to be a complete type - com/sun/star/frame/XSynchronousFrameLoader.hpp - com/sun/star/lang/XServiceInfo.hpp + chart2/source/controller/main/ChartFrameloader.cxx: + # Actually used + - com/sun/star/uno/XComponentContext.hpp + chart2/source/controller/main/ChartDropTargetHelper.cxx: + # Actually used + - com/sun/star/chart2/XChartDocument.hpp chart2/source/controller/main/CommandDispatch.hxx: # base class has to be a complete type - com/sun/star/frame/XDispatch.hpp - com/sun/star/util/XModifyListener.hpp - comphelper/interfacecontainer2.hxx + chart2/source/controller/main/CommandDispatchContainer.cxx: + # Actually used + - com/sun/star/frame/XModel.hpp chart2/source/controller/main/ControllerCommandDispatch.hxx: # base class has to be a complete type - CommandDispatch.hxx @@ -515,9 +691,9 @@ blacklist: chart2/source/controller/main/ElementSelector.hxx: # base class has to be a complete type - com/sun/star/lang/XServiceInfo.hpp - chart2/source/view/main/ShapeFactory.cxx: - # Needed for template - - com/sun/star/graphic/XGraphic.hpp + chart2/source/controller/main/ObjectHierarchy.cxx: + # Actually used + - com/sun/star/awt/KeyEvent.hpp chart2/source/controller/main/StatusBarCommandDispatch.hxx: # base class has to be a complete type - CommandDispatch.hxx @@ -534,6 +710,15 @@ blacklist: chart2/source/controller/main/ChartController_Tools.cxx: # Needed for template - com/sun/star/graphic/XGraphic.hpp + chart2/source/controller/main/PositionAndSizeHelper.cxx: + # Actually used + - com/sun/star/awt/Rectangle.hpp + chart2/source/controller/main/StatusBarCommandDispatch.cxx: + # Actually used + - com/sun/star/view/XSelectionSupplier.hpp + chart2/source/controller/main/UndoGuard.cxx: + # Actually used + - com/sun/star/document/XUndoManager.hpp chart2/source/controller/main/UndoActions.hxx: # base class has to be a complete type - com/sun/star/document/XUndoAction.hpp @@ -641,9 +826,6 @@ blacklist: chart2/source/controller/chartapiwrapper/WrappedSplineProperties.hxx: # Needed for css namespace shortcut - sal/types.h - chart2/source/controller/chartapiwrapper/WrappedSplineProperties.hxx: - # Needed for css namespace shortcut - - sal/types.h chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.hxx: # Needed for css namespace shortcut - sal/types.h @@ -656,4 +838,3 @@ blacklist: chart2/source/controller/itemsetwrapper/MultipleChartConverters.cxx: # Needed for compound type declaration - com/sun/star/chart2/XAxis.hpp - diff --git a/chart2/inc/SpecialCharacters.hxx b/chart2/inc/SpecialCharacters.hxx index 5bf13e25cde3..60d9a1953941 100644 --- a/chart2/inc/SpecialCharacters.hxx +++ b/chart2/inc/SpecialCharacters.hxx @@ -10,6 +10,8 @@ #ifndef INCLUDED_CHART2_INC_SPECIALCHARACTERS_HXX #define INCLUDED_CHART2_INC_SPECIALCHARACTERS_HXX +#include + const sal_Unicode aMinusSign = 0x2212; const sal_Unicode aSuperscriptFigures[10]={ 0x2070, 0x00B9, 0x00B2, 0x00B3, 0x2074, 0x2075, 0x2076, 0x2077, 0x2078, 0x2079 }; diff --git a/chart2/source/controller/accessibility/AccessibleBase.cxx b/chart2/source/controller/accessibility/AccessibleBase.cxx index e404d48a28d0..26657d429bd1 100644 --- a/chart2/source/controller/accessibility/AccessibleBase.cxx +++ b/chart2/source/controller/accessibility/AccessibleBase.cxx @@ -36,6 +36,7 @@ #include #include #include +#include #include #include #include @@ -43,7 +44,6 @@ #include #include #include -#include #include #include diff --git a/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx b/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx index d9f594a83b6a..20f9da101be9 100644 --- a/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx +++ b/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx @@ -32,7 +32,6 @@ #include #include #include -#include using namespace ::com::sun::star; using ::com::sun::star::uno::Any; diff --git a/chart2/source/controller/dialogs/DataBrowser.cxx b/chart2/source/controller/dialogs/DataBrowser.cxx index 10c1ecaffe44..d5146749cd4d 100644 --- a/chart2/source/controller/dialogs/DataBrowser.cxx +++ b/chart2/source/controller/dialogs/DataBrowser.cxx @@ -39,7 +39,6 @@ #include #include -#include #include #include #include diff --git a/chart2/source/controller/dialogs/ObjectNameProvider.cxx b/chart2/source/controller/dialogs/ObjectNameProvider.cxx index 4edd9c4c2c13..2a3d954a61fa 100644 --- a/chart2/source/controller/dialogs/ObjectNameProvider.cxx +++ b/chart2/source/controller/dialogs/ObjectNameProvider.cxx @@ -32,7 +32,6 @@ #include #include #include -#include #include #include #include diff --git a/chart2/source/controller/dialogs/TabPageIds.h b/chart2/source/controller/dialogs/TabPageIds.h deleted file mode 100644 index 0058fd33e914..000000000000 --- a/chart2/source/controller/dialogs/TabPageIds.h +++ /dev/null @@ -1,44 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_TABPAGEIDS_H -#define INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_TABPAGEIDS_H - -//TabPage Ids: -#define TP_LEGEND_POS 900 -#define TP_DATA_DESCR 901 -#define TP_ALIGNMENT 902 -#define TP_LAYOUT 907 -#define TP_OPTIONS 908 -#define TP_POLAROPTIONS 909 -#define TP_AXIS_LABEL 920 -#define TP_SCALE 903 -#define TP_AXIS_POSITIONS 904 - -#define TP_3D_SCENEGEOMETRY 915 -#define TP_3D_SCENEAPPEARANCE 916 -#define TP_3D_SCENEILLUMINATION 917 - -#define TP_TRENDLINE 918 -#define TP_YERRORBAR 919 -#define TP_XERRORBAR 923 - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/chart2/source/controller/dialogs/dlg_CreationWizard.cxx b/chart2/source/controller/dialogs/dlg_CreationWizard.cxx index 2bdedc962856..34a0e0800578 100644 --- a/chart2/source/controller/dialogs/dlg_CreationWizard.cxx +++ b/chart2/source/controller/dialogs/dlg_CreationWizard.cxx @@ -22,7 +22,6 @@ #include #include #include -#include #include "tp_ChartType.hxx" #include "tp_RangeChooser.hxx" diff --git a/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx b/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx index ceca92791678..6fc20984918a 100644 --- a/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx +++ b/chart2/source/controller/dialogs/dlg_CreationWizard_UNO.cxx @@ -22,7 +22,6 @@ #include #include #include -#include #include #include #include diff --git a/chart2/source/controller/dialogs/dlg_DataEditor.cxx b/chart2/source/controller/dialogs/dlg_DataEditor.cxx index 03f78205da25..a9fdf71a96e0 100644 --- a/chart2/source/controller/dialogs/dlg_DataEditor.cxx +++ b/chart2/source/controller/dialogs/dlg_DataEditor.cxx @@ -21,10 +21,6 @@ #include "DataBrowser.hxx" #include -#include -#include -#include - #include #include diff --git a/chart2/source/controller/dialogs/dlg_View3D.cxx b/chart2/source/controller/dialogs/dlg_View3D.cxx index 03a5fcc299f5..311182615935 100644 --- a/chart2/source/controller/dialogs/dlg_View3D.cxx +++ b/chart2/source/controller/dialogs/dlg_View3D.cxx @@ -19,7 +19,6 @@ #include #include -#include "TabPageIds.h" #include #include "tp_3D_SceneGeometry.hxx" #include "tp_3D_SceneAppearance.hxx" diff --git a/chart2/source/controller/dialogs/res_ErrorBar.cxx b/chart2/source/controller/dialogs/res_ErrorBar.cxx index 46407f7cc732..b8511f21896c 100644 --- a/chart2/source/controller/dialogs/res_ErrorBar.cxx +++ b/chart2/source/controller/dialogs/res_ErrorBar.cxx @@ -26,7 +26,6 @@ #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 293f4658d2b0..6c603c344270 100644 --- a/chart2/source/controller/dialogs/tp_ChartType.cxx +++ b/chart2/source/controller/dialogs/tp_ChartType.cxx @@ -18,13 +18,11 @@ */ #include "tp_ChartType.hxx" -#include #include #include #include #include #include -#include #include #include #include @@ -33,7 +31,6 @@ #include #include -#include namespace chart { diff --git a/chart2/source/controller/dialogs/tp_ErrorBars.cxx b/chart2/source/controller/dialogs/tp_ErrorBars.cxx index addaf99281ce..94a3d6c77173 100644 --- a/chart2/source/controller/dialogs/tp_ErrorBars.cxx +++ b/chart2/source/controller/dialogs/tp_ErrorBars.cxx @@ -18,8 +18,6 @@ */ #include "tp_ErrorBars.hxx" -#include -#include using namespace ::com::sun::star; diff --git a/chart2/source/controller/dialogs/tp_Trendline.cxx b/chart2/source/controller/dialogs/tp_Trendline.cxx index 6a91ebf30e17..fe25959bdd51 100644 --- a/chart2/source/controller/dialogs/tp_Trendline.cxx +++ b/chart2/source/controller/dialogs/tp_Trendline.cxx @@ -18,8 +18,6 @@ */ #include "tp_Trendline.hxx" -#include -#include namespace chart { diff --git a/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx b/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx index 8a28e975c256..7113eba8857b 100644 --- a/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx +++ b/chart2/source/controller/drawinglayer/ViewElementListProvider.cxx @@ -33,7 +33,6 @@ #include #include #include -#include #include namespace chart diff --git a/chart2/source/controller/inc/ItemPropertyMap.hxx b/chart2/source/controller/inc/ItemPropertyMap.hxx index 5577df790bd7..4790bd42dc6a 100644 --- a/chart2/source/controller/inc/ItemPropertyMap.hxx +++ b/chart2/source/controller/inc/ItemPropertyMap.hxx @@ -21,6 +21,8 @@ #include +#include "ItemConverter.hxx" + #include namespace chart { namespace wrapper { diff --git a/chart2/source/controller/inc/dlg_CreationWizard_UNO.hxx b/chart2/source/controller/inc/dlg_CreationWizard_UNO.hxx index 230cac85816d..c3ebb615db32 100644 --- a/chart2/source/controller/inc/dlg_CreationWizard_UNO.hxx +++ b/chart2/source/controller/inc/dlg_CreationWizard_UNO.hxx @@ -28,8 +28,6 @@ #include #include -#include -#include #include "dlg_CreationWizard.hxx" namespace com { namespace sun { namespace star { namespace awt { class XWindow; } } } } diff --git a/chart2/source/controller/inc/dlg_DataSource.hxx b/chart2/source/controller/inc/dlg_DataSource.hxx index 680256d1db53..58965cb967f0 100644 --- a/chart2/source/controller/inc/dlg_DataSource.hxx +++ b/chart2/source/controller/inc/dlg_DataSource.hxx @@ -20,7 +20,6 @@ #define INCLUDED_CHART2_SOURCE_CONTROLLER_INC_DLG_DATASOURCE_HXX #include -#include #include "TabPageNotifiable.hxx" diff --git a/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx b/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx index 2856ff78b697..39babb82a09c 100644 --- a/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx +++ b/chart2/source/controller/itemsetwrapper/DataPointItemConverter.cxx @@ -36,7 +36,6 @@ #include #include -#include #include #include #include diff --git a/chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx b/chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx index 9b169f9280cf..69145126e4c8 100644 --- a/chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx +++ b/chart2/source/controller/itemsetwrapper/SeriesOptionsItemConverter.cxx @@ -33,7 +33,6 @@ #include #include #include -#include using namespace ::com::sun::star; using namespace ::com::sun::star::chart2; diff --git a/chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx b/chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx index ffbab285998e..86f5891bbad9 100644 --- a/chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx +++ b/chart2/source/controller/itemsetwrapper/TextLabelItemConverter.cxx @@ -27,7 +27,6 @@ #include "SchWhichPairs.hxx" #include -#include #include #include #include diff --git a/chart2/source/controller/main/ChartController_Insert.cxx b/chart2/source/controller/main/ChartController_Insert.cxx index ec45a22eae0e..a8212bf99b27 100644 --- a/chart2/source/controller/main/ChartController_Insert.cxx +++ b/chart2/source/controller/main/ChartController_Insert.cxx @@ -57,7 +57,6 @@ #include #include -#include #include #include diff --git a/chart2/source/controller/main/ChartController_Position.cxx b/chart2/source/controller/main/ChartController_Position.cxx index 66884dfb2fa8..184c37e108ed 100644 --- a/chart2/source/controller/main/ChartController_Position.cxx +++ b/chart2/source/controller/main/ChartController_Position.cxx @@ -32,10 +32,8 @@ #include #include -#include #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 be7760caca62..2adad587dec6 100644 --- a/chart2/source/controller/main/ChartController_Properties.cxx +++ b/chart2/source/controller/main/ChartController_Properties.cxx @@ -57,7 +57,6 @@ #include -#include #include #include #include diff --git a/chart2/source/controller/main/ChartController_Tools.cxx b/chart2/source/controller/main/ChartController_Tools.cxx index 74f7e9ab6f79..fc2b475181d5 100644 --- a/chart2/source/controller/main/ChartController_Tools.cxx +++ b/chart2/source/controller/main/ChartController_Tools.cxx @@ -71,7 +71,6 @@ #include #include #include -#include #include diff --git a/chart2/source/controller/main/ShapeController.cxx b/chart2/source/controller/main/ShapeController.cxx index 1b8f6613c6b5..3bb2dcb1e116 100644 --- a/chart2/source/controller/main/ShapeController.cxx +++ b/chart2/source/controller/main/ShapeController.cxx @@ -20,7 +20,6 @@ #include "ShapeController.hxx" #include #include -#include #include #include #include diff --git a/chart2/source/controller/main/StatusBarCommandDispatch.cxx b/chart2/source/controller/main/StatusBarCommandDispatch.cxx index 1a7e9a35c6b5..1e6c06c35b6f 100644 --- a/chart2/source/controller/main/StatusBarCommandDispatch.cxx +++ b/chart2/source/controller/main/StatusBarCommandDispatch.cxx @@ -19,7 +19,6 @@ #include "StatusBarCommandDispatch.hxx" #include -#include #include #include #include diff --git a/chart2/source/controller/sidebar/ChartTypePanel.cxx b/chart2/source/controller/sidebar/ChartTypePanel.cxx index e6ee12ec7e4e..88fd04440e58 100644 --- a/chart2/source/controller/sidebar/ChartTypePanel.cxx +++ b/chart2/source/controller/sidebar/ChartTypePanel.cxx @@ -18,39 +18,20 @@ */ #include "ChartTypePanel.hxx" +#include -#include #include -#include #include #include #include #include -#include #include -#include -#include #include -#include -#include -#include - -#include -#include -#include +#include #include +#include -#include -#include -#include -#include -#include - -#include -#include - -#include #include #include diff --git a/chart2/source/controller/sidebar/ChartTypePanel.hxx b/chart2/source/controller/sidebar/ChartTypePanel.hxx index 02b76a6b04b6..867d3003541b 100644 --- a/chart2/source/controller/sidebar/ChartTypePanel.hxx +++ b/chart2/source/controller/sidebar/ChartTypePanel.hxx @@ -27,7 +27,6 @@ #include #include #include -#include namespace com { diff --git a/chart2/source/inc/AxisIndexDefines.hxx b/chart2/source/inc/AxisIndexDefines.hxx index e7d118048301..bc8b4e6dd2ea 100644 --- a/chart2/source/inc/AxisIndexDefines.hxx +++ b/chart2/source/inc/AxisIndexDefines.hxx @@ -19,6 +19,8 @@ #ifndef INCLUDED_CHART2_SOURCE_INC_AXISINDEXDEFINES_HXX #define INCLUDED_CHART2_SOURCE_INC_AXISINDEXDEFINES_HXX +#include + namespace chart { diff --git a/chart2/source/inc/ChartResourceGroups.hxx b/chart2/source/inc/ChartResourceGroups.hxx index 6e474992dda7..3317f83acd09 100644 --- a/chart2/source/inc/ChartResourceGroups.hxx +++ b/chart2/source/inc/ChartResourceGroups.hxx @@ -23,10 +23,7 @@ #include "res_BarGeometry.hxx" #include "ChangingResource.hxx" #include "ChartTypeDialogController.hxx" - -#include - -#include +#include "ChartResourceGroupDlgs.hxx" namespace chart { diff --git a/chart2/source/inc/FormattedStringHelper.hxx b/chart2/source/inc/FormattedStringHelper.hxx index e20f00a1692d..91e337248914 100644 --- a/chart2/source/inc/FormattedStringHelper.hxx +++ b/chart2/source/inc/FormattedStringHelper.hxx @@ -19,7 +19,6 @@ #ifndef INCLUDED_CHART2_SOURCE_INC_FORMATTEDSTRINGHELPER_HXX #define INCLUDED_CHART2_SOURCE_INC_FORMATTEDSTRINGHELPER_HXX -#include "charttoolsdllapi.hxx" #include namespace com { namespace sun { namespace star { namespace beans { class XPropertySet; } } } } diff --git a/chart2/source/inc/MediaDescriptorHelper.hxx b/chart2/source/inc/MediaDescriptorHelper.hxx index 85f88b1a1e0e..1b1025007949 100644 --- a/chart2/source/inc/MediaDescriptorHelper.hxx +++ b/chart2/source/inc/MediaDescriptorHelper.hxx @@ -21,6 +21,7 @@ #include #include +#include #include "charttoolsdllapi.hxx" namespace com { namespace sun { namespace star { namespace beans { struct PropertyValue; } } } } diff --git a/chart2/source/inc/ModifyListenerHelper.hxx b/chart2/source/inc/ModifyListenerHelper.hxx index 4083edad9bc6..04d044172fba 100644 --- a/chart2/source/inc/ModifyListenerHelper.hxx +++ b/chart2/source/inc/ModifyListenerHelper.hxx @@ -24,7 +24,6 @@ #include #include "MutexContainer.hxx" -#include "charttoolsdllapi.hxx" #include #include diff --git a/chart2/source/inc/RegressionCalculationHelper.hxx b/chart2/source/inc/RegressionCalculationHelper.hxx index eb1e46703e39..3019b0939807 100644 --- a/chart2/source/inc/RegressionCalculationHelper.hxx +++ b/chart2/source/inc/RegressionCalculationHelper.hxx @@ -19,6 +19,8 @@ #ifndef INCLUDED_CHART2_SOURCE_INC_REGRESSIONCALCULATIONHELPER_HXX #define INCLUDED_CHART2_SOURCE_INC_REGRESSIONCALCULATIONHELPER_HXX +#include + #include #include diff --git a/chart2/source/inc/TrueGuard.hxx b/chart2/source/inc/TrueGuard.hxx index 38671d3a441f..19047fe8065b 100644 --- a/chart2/source/inc/TrueGuard.hxx +++ b/chart2/source/inc/TrueGuard.hxx @@ -19,8 +19,6 @@ #ifndef INCLUDED_CHART2_SOURCE_INC_TRUEGUARD_HXX #define INCLUDED_CHART2_SOURCE_INC_TRUEGUARD_HXX -#include "charttoolsdllapi.hxx" - namespace chart { /** This guard sets the given boolean reference to true in the constructor and to false in the destructor diff --git a/chart2/source/model/filter/XMLFilter.cxx b/chart2/source/model/filter/XMLFilter.cxx index 694bba9ec5c6..8696115799dd 100644 --- a/chart2/source/model/filter/XMLFilter.cxx +++ b/chart2/source/model/filter/XMLFilter.cxx @@ -46,7 +46,6 @@ #include #include #include -#include #include #include diff --git a/chart2/source/tools/ChartModelHelper.cxx b/chart2/source/tools/ChartModelHelper.cxx index 2ff699fb0f4a..c6a294fe8a15 100644 --- a/chart2/source/tools/ChartModelHelper.cxx +++ b/chart2/source/tools/ChartModelHelper.cxx @@ -34,7 +34,6 @@ #include #include #include -#include namespace chart { diff --git a/chart2/source/tools/DataSeriesHelper.cxx b/chart2/source/tools/DataSeriesHelper.cxx index c00e5ad3457a..0edb82fd5dc0 100644 --- a/chart2/source/tools/DataSeriesHelper.cxx +++ b/chart2/source/tools/DataSeriesHelper.cxx @@ -37,7 +37,6 @@ #include #include #include -#include #include #include diff --git a/chart2/source/tools/ImplOPropertySet.hxx b/chart2/source/tools/ImplOPropertySet.hxx index 8cc1ea8b65d1..9b47641ee13f 100644 --- a/chart2/source/tools/ImplOPropertySet.hxx +++ b/chart2/source/tools/ImplOPropertySet.hxx @@ -21,6 +21,7 @@ #include #include +#include #include #include diff --git a/chart2/source/tools/ThreeDHelper.cxx b/chart2/source/tools/ThreeDHelper.cxx index 1e049a856da9..b1c086599926 100644 --- a/chart2/source/tools/ThreeDHelper.cxx +++ b/chart2/source/tools/ThreeDHelper.cxx @@ -31,7 +31,6 @@ #include #include #include -#include namespace chart { diff --git a/chart2/source/view/axes/VAxisProperties.cxx b/chart2/source/view/axes/VAxisProperties.cxx index 098401db5754..d660915b4023 100644 --- a/chart2/source/view/axes/VAxisProperties.cxx +++ b/chart2/source/view/axes/VAxisProperties.cxx @@ -28,7 +28,6 @@ #include #include -#include #include #include diff --git a/chart2/source/view/axes/VCartesianAxis.cxx b/chart2/source/view/axes/VCartesianAxis.cxx index ce795abb17d0..efb87de74026 100644 --- a/chart2/source/view/axes/VCartesianAxis.cxx +++ b/chart2/source/view/axes/VCartesianAxis.cxx @@ -35,7 +35,6 @@ #include #include #include -#include #include #include diff --git a/chart2/source/view/axes/VCoordinateSystem.cxx b/chart2/source/view/axes/VCoordinateSystem.cxx index ddf10f459eff..54d3341efaf2 100644 --- a/chart2/source/view/axes/VCoordinateSystem.cxx +++ b/chart2/source/view/axes/VCoordinateSystem.cxx @@ -33,7 +33,6 @@ #include #include #include -#include #include #include #include diff --git a/chart2/source/view/charttypes/CandleStickChart.cxx b/chart2/source/view/charttypes/CandleStickChart.cxx index e48489a61906..4204ab3fecfa 100644 --- a/chart2/source/view/charttypes/CandleStickChart.cxx +++ b/chart2/source/view/charttypes/CandleStickChart.cxx @@ -25,7 +25,6 @@ #include "BarPositionHelper.hxx" #include #include -#include #include #include diff --git a/chart2/source/view/charttypes/ConfigAccess.cxx b/chart2/source/view/charttypes/ConfigAccess.cxx index bca2b6dd99ef..2e6e507408b4 100644 --- a/chart2/source/view/charttypes/ConfigAccess.cxx +++ b/chart2/source/view/charttypes/ConfigAccess.cxx @@ -19,11 +19,10 @@ #include -#include #include -#include #include #include +#include namespace chart { diff --git a/chart2/source/view/diagram/VDiagram.cxx b/chart2/source/view/diagram/VDiagram.cxx index fec07e83f0a3..a3999441b081 100644 --- a/chart2/source/view/diagram/VDiagram.cxx +++ b/chart2/source/view/diagram/VDiagram.cxx @@ -29,13 +29,11 @@ #include #include #include -#include #include #include #include #include #include -#include namespace chart { diff --git a/chart2/source/view/inc/PropertyMapper.hxx b/chart2/source/view/inc/PropertyMapper.hxx index 2066d0a1b835..3335c4e795d7 100644 --- a/chart2/source/view/inc/PropertyMapper.hxx +++ b/chart2/source/view/inc/PropertyMapper.hxx @@ -26,8 +26,6 @@ #include #include -#include - namespace com { namespace sun { namespace star { namespace beans { class XPropertySet; } } } } namespace chart diff --git a/chart2/source/view/inc/ViewDefines.hxx b/chart2/source/view/inc/ViewDefines.hxx index 186f01b2c390..d191efe484f9 100644 --- a/chart2/source/view/inc/ViewDefines.hxx +++ b/chart2/source/view/inc/ViewDefines.hxx @@ -19,6 +19,8 @@ #ifndef INCLUDED_CHART2_SOURCE_VIEW_INC_VIEWDEFINES_HXX #define INCLUDED_CHART2_SOURCE_VIEW_INC_VIEWDEFINES_HXX +#include + namespace chart { diff --git a/chart2/source/view/main/ChartView.cxx b/chart2/source/view/main/ChartView.cxx index 0e4d1124847b..ae2a3d7d0ae6 100644 --- a/chart2/source/view/main/ChartView.cxx +++ b/chart2/source/view/main/ChartView.cxx @@ -97,7 +97,6 @@ #include -#include #include #include diff --git a/chart2/source/view/main/Linear3DTransformation.cxx b/chart2/source/view/main/Linear3DTransformation.cxx index c6802dc21b10..c27ffa3168a5 100644 --- a/chart2/source/view/main/Linear3DTransformation.cxx +++ b/chart2/source/view/main/Linear3DTransformation.cxx @@ -18,7 +18,6 @@ */ #include -#include using namespace ::com::sun::star; diff --git a/chart2/source/view/main/PropertyMapper.cxx b/chart2/source/view/main/PropertyMapper.cxx index f96c7b101509..2658e94ea78a 100644 --- a/chart2/source/view/main/PropertyMapper.cxx +++ b/chart2/source/view/main/PropertyMapper.cxx @@ -19,7 +19,6 @@ #include #include -#include #include #include diff --git a/chart2/source/view/main/VDataSeries.cxx b/chart2/source/view/main/VDataSeries.cxx index 0f2749a1f6c7..1b6f23121570 100644 --- a/chart2/source/view/main/VDataSeries.cxx +++ b/chart2/source/view/main/VDataSeries.cxx @@ -33,7 +33,6 @@ #include #include -#include #include #include #include diff --git a/chart2/source/view/main/VLineProperties.cxx b/chart2/source/view/main/VLineProperties.cxx index 003659610a96..f1ca35e71730 100644 --- a/chart2/source/view/main/VLineProperties.cxx +++ b/chart2/source/view/main/VLineProperties.cxx @@ -20,7 +20,6 @@ #include #include #include -#include #include namespace chart diff --git a/chart2/source/view/main/VPolarTransformation.cxx b/chart2/source/view/main/VPolarTransformation.cxx index 2facc242bc3e..6d3ba587fc9c 100644 --- a/chart2/source/view/main/VPolarTransformation.cxx +++ b/chart2/source/view/main/VPolarTransformation.cxx @@ -19,7 +19,6 @@ #include #include -#include using namespace ::com::sun::star; diff --git a/chart2/source/view/main/VTitle.cxx b/chart2/source/view/main/VTitle.cxx index d0633263f8af..39989f191aa0 100644 --- a/chart2/source/view/main/VTitle.cxx +++ b/chart2/source/view/main/VTitle.cxx @@ -23,7 +23,6 @@ #include #include #include -#include #include namespace chart diff --git a/solenv/clang-format/blacklist b/solenv/clang-format/blacklist index c4af0b0b1c0c..b3c04fccfdde 100644 --- a/solenv/clang-format/blacklist +++ b/solenv/clang-format/blacklist @@ -933,7 +933,6 @@ chart2/source/controller/dialogs/DialogModel.hxx chart2/source/controller/dialogs/ObjectNameProvider.cxx chart2/source/controller/dialogs/RangeSelectionHelper.cxx chart2/source/controller/dialogs/RangeSelectionListener.cxx -chart2/source/controller/dialogs/TabPageIds.h chart2/source/controller/dialogs/TextDirectionListBox.cxx chart2/source/controller/dialogs/TimerTriggeredControllerLock.cxx chart2/source/controller/dialogs/TitleDialogData.cxx -- cgit