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 /xmloff | |
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 'xmloff')
-rw-r--r-- | xmloff/source/draw/ximpstyl.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/style/xmlnumfe.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/style/xmlnumfi.cxx | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/xmloff/source/draw/ximpstyl.cxx b/xmloff/source/draw/ximpstyl.cxx index aa1520fe7047..77f5877a2442 100644 --- a/xmloff/source/draw/ximpstyl.cxx +++ b/xmloff/source/draw/ximpstyl.cxx @@ -45,6 +45,7 @@ #include <xmloff/xmlprcon.hxx> #include <xmloff/families.hxx> #include <com/sun/star/container/XNameContainer.hpp> +#include <svl/numformat.hxx> #include <svl/zforlist.hxx> #include "layerimp.hxx" #include <xmloff/XMLGraphicsDefaultStyle.hxx> diff --git a/xmloff/source/style/xmlnumfe.cxx b/xmloff/source/style/xmlnumfe.cxx index 38c4d42d2986..2695a84fa38b 100644 --- a/xmloff/source/style/xmlnumfe.cxx +++ b/xmloff/source/style/xmlnumfe.cxx @@ -19,6 +19,7 @@ #include <comphelper/sequence.hxx> #include <comphelper/string.hxx> +#include <svl/numformat.hxx> #include <svl/zforlist.hxx> #include <svl/zformat.hxx> #include <svl/numuno.hxx> diff --git a/xmloff/source/style/xmlnumfi.cxx b/xmloff/source/style/xmlnumfi.cxx index f7cabc5fa29f..863a9f55d2cb 100644 --- a/xmloff/source/style/xmlnumfi.cxx +++ b/xmloff/source/style/xmlnumfi.cxx @@ -18,7 +18,7 @@ */ #include <svl/zforlist.hxx> - +#include <svl/numformat.hxx> #include <svl/zformat.hxx> #include <svl/numuno.hxx> #include <i18nlangtag/languagetag.hxx> |