diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-03-19 01:54:54 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-04-25 11:28:15 +0200 |
commit | f9b8c2d57b10de6344ff5555c0b09947484a586b (patch) | |
tree | d9144cfe83ad88a62752503ef71c903e93fe6b7b /io/source/TextOutputStream | |
parent | 5a2aba31867e0912700f6c976f152116d902fe21 (diff) |
tdf#42949 Fix IWYU warnings in io/
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: I16dfde335816053e5821d5e975b27b6e4819b1a8
Reviewed-on: https://gerrit.libreoffice.org/71135
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'io/source/TextOutputStream')
-rw-r--r-- | io/source/TextOutputStream/TextOutputStream.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/io/source/TextOutputStream/TextOutputStream.cxx b/io/source/TextOutputStream/TextOutputStream.cxx index 4caef34cd5c2..ce911ce318bc 100644 --- a/io/source/TextOutputStream/TextOutputStream.cxx +++ b/io/source/TextOutputStream/TextOutputStream.cxx @@ -19,11 +19,7 @@ -#include <uno/mapping.hxx> - -#include <cppuhelper/factory.hxx> #include <cppuhelper/implbase.hxx> -#include <cppuhelper/implementationentry.hxx> #include <cppuhelper/supportsservice.hxx> #include <rtl/textenc.h> @@ -35,6 +31,8 @@ #include <services.hxx> +namespace com::sun::star::uno { class XComponentContext; } + #define IMPLEMENTATION_NAME "com.sun.star.comp.io.TextOutputStream" #define SERVICE_NAME "com.sun.star.io.TextOutputStream" @@ -43,7 +41,6 @@ using namespace ::cppu; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::io; -using namespace ::com::sun::star::registry; namespace io_TextOutputStream { |