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 /basic/source | |
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 'basic/source')
-rw-r--r-- | basic/source/comp/scanner.cxx | 1 | ||||
-rw-r--r-- | basic/source/runtime/methods.cxx | 1 | ||||
-rw-r--r-- | basic/source/runtime/methods1.cxx | 1 | ||||
-rw-r--r-- | basic/source/runtime/runtime.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxdate.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxscan.cxx | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/basic/source/comp/scanner.cxx b/basic/source/comp/scanner.cxx index 268308ab13c1..9523597721bd 100644 --- a/basic/source/comp/scanner.cxx +++ b/basic/source/comp/scanner.cxx @@ -24,6 +24,7 @@ #include <basic/sberrors.hxx> #include <i18nlangtag/lang.h> +#include <svl/numformat.hxx> #include <svl/zforlist.hxx> #include <rtl/character.hxx> diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx index 77e1d26e4fe5..d02129f9f980 100644 --- a/basic/source/runtime/methods.cxx +++ b/basic/source/runtime/methods.cxx @@ -72,6 +72,7 @@ #include <com/sun/star/util/SearchAlgorithms2.hpp> #include <i18nutil/searchopt.hxx> #include <unotools/textsearch.hxx> +#include <svl/numformat.hxx> diff --git a/basic/source/runtime/methods1.cxx b/basic/source/runtime/methods1.cxx index b20b3fce3775..36595e53ca5e 100644 --- a/basic/source/runtime/methods1.cxx +++ b/basic/source/runtime/methods1.cxx @@ -52,6 +52,7 @@ #include <sal/log.hxx> #include <eventatt.hxx> #include <rtl/math.h> +#include <svl/numformat.hxx> #include <comphelper/processfactory.hxx> #include <comphelper/string.hxx> diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx index 7a246247e903..e88065225793 100644 --- a/basic/source/runtime/runtime.cxx +++ b/basic/source/runtime/runtime.cxx @@ -46,6 +46,7 @@ #include <rtl/ustrbuf.hxx> #include <rtl/character.hxx> +#include <svl/numformat.hxx> #include <svl/zforlist.hxx> #include <i18nutil/searchopt.hxx> diff --git a/basic/source/sbx/sbxdate.cxx b/basic/source/sbx/sbxdate.cxx index 07947bffe313..5ebf52b69af6 100644 --- a/basic/source/sbx/sbxdate.cxx +++ b/basic/source/sbx/sbxdate.cxx @@ -20,6 +20,7 @@ #include <rtl/math.hxx> #include <vcl/svapp.hxx> #include <vcl/settings.hxx> +#include <svl/numformat.hxx> #include <svl/zforlist.hxx> #include <tools/color.hxx> #include <i18nlangtag/lang.h> diff --git a/basic/source/sbx/sbxscan.cxx b/basic/source/sbx/sbxscan.cxx index 08f43ab475fa..a017b66744a9 100644 --- a/basic/source/sbx/sbxscan.cxx +++ b/basic/source/sbx/sbxscan.cxx @@ -45,6 +45,7 @@ #include <rtl/character.hxx> #include <rtl/math.hxx> +#include <svl/numformat.hxx> #include <svl/zforlist.hxx> |