diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-05-07 23:15:46 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-05-15 09:08:31 +0200 |
commit | 1c2d8e870cc09e883bc7d53ff6fdefa6c9092a33 (patch) | |
tree | b90733ed6138bc6e62e52bb75036b2846b4ccf97 | |
parent | c1676204447df942e766c0780c1580e1f0427b73 (diff) |
tdf#42949 Fix IWYU warnings in sc/inc/columniterator.hxx
Found with bin/find-unneeded-includes
Here IWYU suggested to remove the column.hxx, but that does not compile.
Instead IWYUs complete suggestion list is applied
Change-Id: I815bcda467ebe698ce673d055e0ff3ad8f4b2aa3
Reviewed-on: https://gerrit.libreoffice.org/53952
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
-rw-r--r-- | sc/inc/columniterator.hxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sc/inc/columniterator.hxx b/sc/inc/columniterator.hxx index c6a87b4e6b39..b36a4c7028b2 100644 --- a/sc/inc/columniterator.hxx +++ b/sc/inc/columniterator.hxx @@ -10,7 +10,15 @@ #ifndef INCLUDED_SC_INC_COLUMNITERATOR_HXX #define INCLUDED_SC_INC_COLUMNITERATOR_HXX -#include "column.hxx" +#include <stddef.h> +#include "address.hxx" +#include <mdds/multi_type_vector_types.hpp> +#include "mtvelements.hxx" +#include <sal/types.h> +#include "types.hxx" +class ScColumn; +class ScDocument; +struct ScRefCellValue; class ScColumnTextWidthIterator { |