diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-10-20 12:00:50 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-10-26 15:08:18 +0200 |
commit | 33623f3117d88683fbc9e66792e5030c0322946e (patch) | |
tree | b817ac4b192e355de61ebff3e22187ca414cf8f2 /include/unotools/textsearch.hxx | |
parent | 31a8d9c711dfdbdb4b11067125d763b1d570033b (diff) |
tdf#42949 Fix IWYU warnings in include/unotools/*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: I444c43b9d549977039f25bec2b5bf666c3e15e0e
Reviewed-on: https://gerrit.libreoffice.org/62041
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'include/unotools/textsearch.hxx')
-rw-r--r-- | include/unotools/textsearch.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/unotools/textsearch.hxx b/include/unotools/textsearch.hxx index 32ec831784ea..2d609fe99ec0 100644 --- a/include/unotools/textsearch.hxx +++ b/include/unotools/textsearch.hxx @@ -24,13 +24,14 @@ #include <i18nlangtag/lang.h> #include <rtl/ustring.hxx> #include <com/sun/star/uno/Reference.h> -#include <com/sun/star/lang/Locale.hpp> -#include <com/sun/star/util/XTextSearch2.hpp> #include <ostream> class CharClass; +namespace com { namespace sun { namespace star { namespace lang { struct Locale; } } } } +namespace com { namespace sun { namespace star { namespace util { class XTextSearch2; } } } } + namespace com { namespace sun { namespace star { |