diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-08-12 22:11:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-13 11:46:13 +0200 |
commit | ef38b9af0abd4a38bb9025a38f21442ebe11238d (patch) | |
tree | 2391f6b76e592b4652e61d19968973d81df8ffbc /chart2 | |
parent | 27864eb5b085d4f7a881e24d1e4509f18c320849 (diff) |
split SvNumberFormatter into it's own header
so I can make changes without running into cyclic dependencies
between header files
Change-Id: I98a91c7cc66002ba745cdb8239e5cc267922a45c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120412
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/dialogs/DataBrowser.cxx | 1 | ||||
-rw-r--r-- | chart2/source/controller/dialogs/res_Trendline.cxx | 1 | ||||
-rw-r--r-- | chart2/source/controller/dialogs/tp_Scale.cxx | 1 | ||||
-rw-r--r-- | chart2/source/model/main/ChartModel.cxx | 1 | ||||
-rw-r--r-- | chart2/source/tools/DiagramHelper.cxx | 1 | ||||
-rw-r--r-- | chart2/source/tools/NumberFormatterWrapper.cxx | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/chart2/source/controller/dialogs/DataBrowser.cxx b/chart2/source/controller/dialogs/DataBrowser.cxx index e5e9be3b99a5..828bc883b2d3 100644 --- a/chart2/source/controller/dialogs/DataBrowser.cxx +++ b/chart2/source/controller/dialogs/DataBrowser.cxx @@ -37,6 +37,7 @@ #include <vcl/virdev.hxx> #include <o3tl/safeint.hxx> #include <osl/diagnose.h> +#include <svl/numformat.hxx> #include <toolkit/helper/vclunohelper.hxx> #include <com/sun/star/chart2/XChartDocument.hpp> diff --git a/chart2/source/controller/dialogs/res_Trendline.cxx b/chart2/source/controller/dialogs/res_Trendline.cxx index 8fc5e63ee2be..baa75ef7cb4f 100644 --- a/chart2/source/controller/dialogs/res_Trendline.cxx +++ b/chart2/source/controller/dialogs/res_Trendline.cxx @@ -24,6 +24,7 @@ #include <com/sun/star/chart2/MovingAverageType.hpp> #include <svl/intitem.hxx> +#include <svl/numformat.hxx> #include <svl/stritem.hxx> #include <svl/zforlist.hxx> #include <vcl/formatter.hxx> diff --git a/chart2/source/controller/dialogs/tp_Scale.cxx b/chart2/source/controller/dialogs/tp_Scale.cxx index e605b17c9891..6c7effde6707 100644 --- a/chart2/source/controller/dialogs/tp_Scale.cxx +++ b/chart2/source/controller/dialogs/tp_Scale.cxx @@ -29,6 +29,7 @@ #include <svx/chrtitem.hxx> #include <svl/eitem.hxx> #include <svl/intitem.hxx> +#include <svl/numformat.hxx> #include <vcl/formatter.hxx> #include <vcl/weld.hxx> #include <svl/zformat.hxx> diff --git a/chart2/source/model/main/ChartModel.cxx b/chart2/source/model/main/ChartModel.cxx index c6aea8b186d9..ab846502f29f 100644 --- a/chart2/source/model/main/ChartModel.cxx +++ b/chart2/source/model/main/ChartModel.cxx @@ -39,6 +39,7 @@ #include <comphelper/propertysequence.hxx> #include <cppuhelper/supportsservice.hxx> +#include <svl/numformat.hxx> #include <svl/numuno.hxx> #include <com/sun/star/lang/DisposedException.hpp> #include <com/sun/star/lang/XInitialization.hpp> diff --git a/chart2/source/tools/DiagramHelper.cxx b/chart2/source/tools/DiagramHelper.cxx index 3fbb442cccd8..ae6766aecaef 100644 --- a/chart2/source/tools/DiagramHelper.cxx +++ b/chart2/source/tools/DiagramHelper.cxx @@ -50,6 +50,7 @@ #include <unotools/saveopt.hxx> #include <rtl/math.hxx> +#include <svl/numformat.hxx> #include <svl/zforlist.hxx> #include <vcl/svapp.hxx> #include <vcl/settings.hxx> diff --git a/chart2/source/tools/NumberFormatterWrapper.cxx b/chart2/source/tools/NumberFormatterWrapper.cxx index ef40617b07dd..e6bc55d0556f 100644 --- a/chart2/source/tools/NumberFormatterWrapper.cxx +++ b/chart2/source/tools/NumberFormatterWrapper.cxx @@ -18,6 +18,7 @@ */ #include <NumberFormatterWrapper.hxx> +#include <svl/numformat.hxx> #include <svl/numuno.hxx> #include <svl/zforlist.hxx> #include <tools/color.hxx> |