diff options
author | Jorenz Paragas <j.paragas.237@gmail.com> | 2016-06-08 19:16:11 -0700 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-10 08:34:56 +0000 |
commit | 4c8d656b897229d5a6f2126fe274d338ec997f76 (patch) | |
tree | 032e1f6db7a6738d08f328b452b7bfe78fdda6ae /include/oox | |
parent | be9f916fdf6a561746391945d2bc2a823f62fa9d (diff) |
tdf#42949: clean up includes in include/oox/token with iwyu
...although the includes were mostly correct.
Change-Id: I82d62f9e239d9e2523c8561e54bf7af1183b8828
Reviewed-on: https://gerrit.libreoffice.org/26141
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/token/namespacemap.hxx | 2 | ||||
-rw-r--r-- | include/oox/token/propertynames.hxx | 1 | ||||
-rw-r--r-- | include/oox/token/tokenmap.hxx | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/include/oox/token/namespacemap.hxx b/include/oox/token/namespacemap.hxx index a17e8cc98ff6..b8068bb0bd8c 100644 --- a/include/oox/token/namespacemap.hxx +++ b/include/oox/token/namespacemap.hxx @@ -21,8 +21,10 @@ #define INCLUDED_OOX_TOKEN_NAMESPACEMAP_HXX #include <map> + #include <rtl/instance.hxx> #include <rtl/ustring.hxx> +#include <sal/types.h> namespace oox { diff --git a/include/oox/token/propertynames.hxx b/include/oox/token/propertynames.hxx index 6419b57f70c1..1f5f3341dd53 100644 --- a/include/oox/token/propertynames.hxx +++ b/include/oox/token/propertynames.hxx @@ -21,6 +21,7 @@ #define INCLUDED_OOX_TOKEN_PROPERTYNAMES_HXX #include <vector> + #include <rtl/instance.hxx> #include <rtl/ustring.hxx> diff --git a/include/oox/token/tokenmap.hxx b/include/oox/token/tokenmap.hxx index 83ce4cfa5d96..2f499698c9a6 100644 --- a/include/oox/token/tokenmap.hxx +++ b/include/oox/token/tokenmap.hxx @@ -21,11 +21,13 @@ #define INCLUDED_OOX_TOKEN_TOKENMAP_HXX #include <vector> + +#include <com/sun/star/uno/Sequence.hxx> #include <oox/token/tokens.hxx> #include <rtl/instance.hxx> #include <rtl/ustring.hxx> #include <sal/log.hxx> -#include <com/sun/star/uno/Sequence.hxx> +#include <sal/types.h> namespace oox { |