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 /oox | |
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 'oox')
-rw-r--r-- | oox/inc/drawingml/chart/datasourcecontext.hxx | 2 | ||||
-rw-r--r-- | oox/source/drawingml/chart/datasourcecontext.cxx | 1 | ||||
-rw-r--r-- | oox/source/export/chartexport.cxx | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/oox/inc/drawingml/chart/datasourcecontext.hxx b/oox/inc/drawingml/chart/datasourcecontext.hxx index 8c893c1973a8..8ce8469cc3cb 100644 --- a/oox/inc/drawingml/chart/datasourcecontext.hxx +++ b/oox/inc/drawingml/chart/datasourcecontext.hxx @@ -24,6 +24,8 @@ #include <drawingml/chart/chartcontextbase.hxx> #include <svl/zforlist.hxx> +class SvNumberFormatter; + namespace oox::drawingml::chart { diff --git a/oox/source/drawingml/chart/datasourcecontext.cxx b/oox/source/drawingml/chart/datasourcecontext.cxx index e9f2f3b189f6..eac776e107d9 100644 --- a/oox/source/drawingml/chart/datasourcecontext.cxx +++ b/oox/source/drawingml/chart/datasourcecontext.cxx @@ -25,6 +25,7 @@ #include <oox/helper/attributelist.hxx> #include <oox/token/namespaces.hxx> #include <oox/token/tokens.hxx> +#include <svl/numformat.hxx> #include <svl/zforlist.hxx> #include <osl/diagnose.h> diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index dfebc8bf061a..dc122a4e97da 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -97,6 +97,7 @@ #include <xmloff/SchXMLSeriesHelper.hxx> #include "ColorPropertySet.hxx" +#include <svl/numformat.hxx> #include <svl/zforlist.hxx> #include <svl/numuno.hxx> #include <tools/diagnose_ex.h> |