diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2023-09-16 15:26:25 +0200 |
---|---|---|
committer | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2023-10-02 21:32:00 +0200 |
commit | 3e753f484910fb65065dd7eb81d2131b51990fe9 (patch) | |
tree | e0b57586d6bfbf606012aec42466086a4838e945 /include/svtools | |
parent | 3b56fbafcc34a1b3d857d47f3f9695804edf7009 (diff) |
tdf#146619 Recheck include/s* with IWYU
Change-Id: Ia0a6330278b044f448c9928362308aadc8fc9a20
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156989
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/genericasyncunodialog.hxx | 1 | ||||
-rw-r--r-- | include/svtools/htmlcfg.hxx | 1 | ||||
-rw-r--r-- | include/svtools/htmlout.hxx | 1 | ||||
-rw-r--r-- | include/svtools/rtfout.hxx | 3 | ||||
-rw-r--r-- | include/svtools/rtftoken.h | 6 |
5 files changed, 3 insertions, 9 deletions
diff --git a/include/svtools/genericasyncunodialog.hxx b/include/svtools/genericasyncunodialog.hxx index 937f9778030d..058c37b00cdb 100644 --- a/include/svtools/genericasyncunodialog.hxx +++ b/include/svtools/genericasyncunodialog.hxx @@ -20,7 +20,6 @@ #pragma once #include <com/sun/star/ui/dialogs/XAsynchronousExecutableDialog.hpp> -#include <sfx2/tabdlg.hxx> #include <svtools/genericunodialog.hxx> #include <vcl/svapp.hxx> diff --git a/include/svtools/htmlcfg.hxx b/include/svtools/htmlcfg.hxx index 8a734c3e876f..5e474cad33a9 100644 --- a/include/svtools/htmlcfg.hxx +++ b/include/svtools/htmlcfg.hxx @@ -19,7 +19,6 @@ #pragma once #include <svtools/svtdllapi.h> -#include <rtl/textenc.h> #define HTML_FONT_COUNT 7 diff --git a/include/svtools/htmlout.hxx b/include/svtools/htmlout.hxx index 04b643c2d951..6e053977d964 100644 --- a/include/svtools/htmlout.hxx +++ b/include/svtools/htmlout.hxx @@ -24,7 +24,6 @@ #include <string_view> #include <svtools/svtdllapi.h> -#include <rtl/textenc.h> #include <rtl/string.hxx> #include <svl/macitem.hxx> diff --git a/include/svtools/rtfout.hxx b/include/svtools/rtfout.hxx index 08d81514dc3d..ae54056be0ca 100644 --- a/include/svtools/rtfout.hxx +++ b/include/svtools/rtfout.hxx @@ -21,9 +21,10 @@ #include <svtools/svtdllapi.h> -#include <rtl/ustring.hxx> #include <rtl/textenc.h> +#include <string_view> + class SvStream; namespace RTFOutFuncs { diff --git a/include/svtools/rtftoken.h b/include/svtools/rtftoken.h index 11c96a2f75e6..f530c8e5ba33 100644 --- a/include/svtools/rtftoken.h +++ b/include/svtools/rtftoken.h @@ -19,11 +19,7 @@ #pragma once -#include <rtl/ustring.hxx> - -namespace rtl { - class OUString; -}; +#include <string_view> // search the TokenID for the token int GetRTFToken( std::u16string_view rSearch ); |