diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-11-17 22:45:11 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-11-18 18:51:48 +0100 |
commit | 721366ebe1605f6167cc46a05fba12ce884b92cf (patch) | |
tree | 49acfc5ec3ebce6e012d909fbc5ce879e3aeb91c /unoxml | |
parent | 537befbb2fd5f1587f7c9cd8c55498d29b713770 (diff) |
cppu: clean up public headers with include-what-you-use
Unfortunately iwyu gets quite confused by the weird cyclic dependencies
between various foo.h/foo.hxx and cppumaker generated headers, so it's
not obvious if any improvement here is realistic...
Change-Id: I0bc66f98b146712e28cabc18d56c11c08418c721
Diffstat (limited to 'unoxml')
-rw-r--r-- | unoxml/source/events/eventdispatcher.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/events/eventdispatcher.hxx | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/unoxml/source/events/eventdispatcher.cxx b/unoxml/source/events/eventdispatcher.cxx index c94e3b66cd00..aa698e1846a5 100644 --- a/unoxml/source/events/eventdispatcher.cxx +++ b/unoxml/source/events/eventdispatcher.cxx @@ -26,6 +26,8 @@ #include "../dom/document.hxx" +#include <osl/mutex.hxx> + using namespace css::uno; using namespace css::xml::dom; using namespace css::xml::dom::events; diff --git a/unoxml/source/events/eventdispatcher.hxx b/unoxml/source/events/eventdispatcher.hxx index 20f75597971b..93de12017c83 100644 --- a/unoxml/source/events/eventdispatcher.hxx +++ b/unoxml/source/events/eventdispatcher.hxx @@ -33,6 +33,8 @@ #include <com/sun/star/xml/dom/events/PhaseType.hpp> #include <com/sun/star/xml/dom/events/XEvent.hpp> +namespace osl { class Mutex; } + namespace DOM { class CDocument; |