diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-11-18 00:06:30 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-11-18 18:51:49 +0100 |
commit | 15b4ab8d1943f625b3648f72ebd1872467c5854c (patch) | |
tree | 8f468606f6976a364b59a62ffae0bb9d614edb73 /xmlhelp | |
parent | 721366ebe1605f6167cc46a05fba12ce884b92cf (diff) |
cppuhelper: clean up public headers with include-what-you-use
Change-Id: I41ba46831f24b2960a1fe982b74a2b623e682e0b
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx | 5 | ||||
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/inputstream.cxx | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx b/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx index a71a589eb65f..206a37581e07 100644 --- a/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx +++ b/xmlhelp/source/cxxhelp/provider/bufferedinputstream.cxx @@ -17,10 +17,11 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <string.h> - #include "bufferedinputstream.hxx" +#include <cppuhelper/queryinterface.hxx> + +#include <string.h> using namespace cppu; using namespace com::sun::star::uno; diff --git a/xmlhelp/source/cxxhelp/provider/inputstream.cxx b/xmlhelp/source/cxxhelp/provider/inputstream.cxx index b0ab09c299d3..af845caacb2f 100644 --- a/xmlhelp/source/cxxhelp/provider/inputstream.cxx +++ b/xmlhelp/source/cxxhelp/provider/inputstream.cxx @@ -20,6 +20,8 @@ #include "inputstream.hxx" +#include <cppuhelper/queryinterface.hxx> + using namespace chelp; using namespace com::sun::star; |