diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-05-19 07:29:47 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-06-18 15:11:50 +0200 |
commit | cb9414f59eca713e1aebac0a2894e8c9412612b7 (patch) | |
tree | e5933dcf0f1fb34d5bb47c93e142e284cfd80f98 /sc/inc/tokenuno.hxx | |
parent | 80e9f9f8d8cc3e1073f98b1413bc0b80b93ec4f9 (diff) |
tdf#42949 Fix IWYU warnings in sc/inc/[Tt]*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here
and a bit of fallout management.
Change-Id: I347377d7bb2a0cf8acda1ad28b5cc79bb954ab7d
Reviewed-on: https://gerrit.libreoffice.org/55726
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sc/inc/tokenuno.hxx')
-rw-r--r-- | sc/inc/tokenuno.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sc/inc/tokenuno.hxx b/sc/inc/tokenuno.hxx index 4b5ddab038a1..2eab2a816f02 100644 --- a/sc/inc/tokenuno.hxx +++ b/sc/inc/tokenuno.hxx @@ -21,18 +21,17 @@ #define INCLUDED_SC_INC_TOKENUNO_HXX #include <memory> -#include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/beans/XPropertySet.hpp> -#include <com/sun/star/sheet/FormulaOpCodeMapEntry.hpp> -#include <com/sun/star/sheet/FormulaToken.hpp> #include <com/sun/star/sheet/XFormulaParser.hpp> #include <cppuhelper/implbase.hxx> #include <svl/lstner.hxx> #include <formula/FormulaOpCodeMapperObj.hxx> -#include "address.hxx" #include "compiler.hxx" +namespace com { namespace sun { namespace star { namespace sheet { struct FormulaOpCodeMapEntry; } } } } +namespace com { namespace sun { namespace star { namespace sheet { struct FormulaToken; } } } } + class ScTokenArray; class ScDocShell; |