diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-03-27 21:41:16 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-03-29 13:26:47 +0100 |
commit | 106d6d3f3c5701f66e0e6e821dd0160621dbd848 (patch) | |
tree | b4f5ecffbe384682633e7aee1b7c62ba6399085b /sc/source/core | |
parent | 9c607b61f4e66c78b0c36802a1dcc997bf39e307 (diff) |
tdf#42949 Fix IWYU warnings in include/sfx2/[n-r]*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ia2bea9bd4775f4ed5ef0133971106a6c0bfdd1c0
Reviewed-on: https://gerrit.libreoffice.org/69896
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sc/source/core')
-rw-r--r-- | sc/source/core/tool/interpr3.cxx | 1 | ||||
-rw-r--r-- | sc/source/core/tool/progress.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/tool/subtotal.cxx | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/core/tool/interpr3.cxx b/sc/source/core/tool/interpr3.cxx index 517e2d258f70..9dffa0d11b28 100644 --- a/sc/source/core/tool/interpr3.cxx +++ b/sc/source/core/tool/interpr3.cxx @@ -38,6 +38,7 @@ #include <algorithm> #include <comphelper/random.hxx> #include <osl/diagnose.h> +#include <basegfx/numeric/ftools.hxx> using ::std::vector; using namespace formula; diff --git a/sc/source/core/tool/progress.cxx b/sc/source/core/tool/progress.cxx index 628f779bd05c..fe9ae274c986 100644 --- a/sc/source/core/tool/progress.cxx +++ b/sc/source/core/tool/progress.cxx @@ -26,6 +26,8 @@ #include <svl/itemset.hxx> #include <osl/diagnose.h> +#include <com/sun/star/frame/XModel.hpp> + #define SC_PROGRESS_CXX #include <progress.hxx> #include <document.hxx> diff --git a/sc/source/core/tool/subtotal.cxx b/sc/source/core/tool/subtotal.cxx index 8fdb2d2342fb..bc0d085170d5 100644 --- a/sc/source/core/tool/subtotal.cxx +++ b/sc/source/core/tool/subtotal.cxx @@ -19,6 +19,7 @@ #include <subtotal.hxx> #include <interpre.hxx> +#include <cfloat> bool SubTotal::SafePlus(double& fVal1, double fVal2) { |