diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-11-14 22:52:35 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-11-17 11:06:53 +0100 |
commit | 6a0fe37dec107392fbe468a35b89071b9a93d2c1 (patch) | |
tree | 4334feae68fa1ddc1ef293cd46ef483f44081c1c /unoxml | |
parent | 30f3b36e07ce37a3fe1909fb4b1419a00d2fdd81 (diff) |
sal: clean up public headers with include-what-you-use
Sadly cannot forward declare "struct {...} TimeValue;".
rtl/(u)?string.hxx still include sal/log.hxx but removing osl/diagnose.h
was painful enough for now...
Change-Id: Id41e17f3870c4f24c53ce7b11f2c40a3d14d1f05
Diffstat (limited to 'unoxml')
-rw-r--r-- | unoxml/source/dom/attr.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/dom/characterdata.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/dom/document.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/dom/documentbuilder.cxx | 1 | ||||
-rw-r--r-- | unoxml/source/dom/documenttype.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/dom/domimplementation.cxx | 1 | ||||
-rw-r--r-- | unoxml/source/dom/element.cxx | 1 | ||||
-rw-r--r-- | unoxml/source/dom/elementlist.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/dom/entitiesmap.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/dom/entity.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/dom/node.cxx | 1 | ||||
-rw-r--r-- | unoxml/source/dom/notation.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/dom/notationsmap.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/dom/text.cxx | 2 | ||||
-rw-r--r-- | unoxml/source/rdf/librdf_repository.cxx | 1 |
15 files changed, 25 insertions, 0 deletions
diff --git a/unoxml/source/dom/attr.cxx b/unoxml/source/dom/attr.cxx index 68c5c82a4e6b..c3fdfac00ecc 100644 --- a/unoxml/source/dom/attr.cxx +++ b/unoxml/source/dom/attr.cxx @@ -23,6 +23,8 @@ #include <boost/shared_ptr.hpp> +#include <osl/diagnose.h> + #include <com/sun/star/xml/dom/DOMException.hpp> #include <com/sun/star/xml/dom/events/XMutationEvent.hpp> diff --git a/unoxml/source/dom/characterdata.cxx b/unoxml/source/dom/characterdata.cxx index 1033a7c9aabf..5689cfc1f2a7 100644 --- a/unoxml/source/dom/characterdata.cxx +++ b/unoxml/source/dom/characterdata.cxx @@ -23,6 +23,8 @@ #include <boost/shared_ptr.hpp> +#include <osl/diagnose.h> + #include <com/sun/star/xml/dom/events/XDocumentEvent.hpp> #include "../events/mutationevent.hxx" diff --git a/unoxml/source/dom/document.cxx b/unoxml/source/dom/document.cxx index d7af99d16c09..fc7b55913446 100644 --- a/unoxml/source/dom/document.cxx +++ b/unoxml/source/dom/document.cxx @@ -42,6 +42,8 @@ #include <string.h> +#include <osl/diagnose.h> + #include <com/sun/star/xml/sax/FastToken.hpp> #include <com/sun/star/xml/sax/XExtendedDocumentHandler.hpp> diff --git a/unoxml/source/dom/documentbuilder.cxx b/unoxml/source/dom/documentbuilder.cxx index 248cf4375f58..f7db8da8f51e 100644 --- a/unoxml/source/dom/documentbuilder.cxx +++ b/unoxml/source/dom/documentbuilder.cxx @@ -30,6 +30,7 @@ #include <rtl/alloc.h> #include <rtl/ustrbuf.hxx> +#include <osl/diagnose.h> #include <comphelper/processfactory.hxx> #include <cppuhelper/implbase1.hxx> diff --git a/unoxml/source/dom/documenttype.cxx b/unoxml/source/dom/documenttype.cxx index aa71ebc7e64a..2aa218acbaa4 100644 --- a/unoxml/source/dom/documenttype.cxx +++ b/unoxml/source/dom/documenttype.cxx @@ -21,6 +21,8 @@ #include <string.h> +#include <osl/diagnose.h> + #include <entitiesmap.hxx> #include <notationsmap.hxx> diff --git a/unoxml/source/dom/domimplementation.cxx b/unoxml/source/dom/domimplementation.cxx index 71f9b6c19ef5..01a573c3b0df 100644 --- a/unoxml/source/dom/domimplementation.cxx +++ b/unoxml/source/dom/domimplementation.cxx @@ -20,6 +20,7 @@ #include <domimplementation.hxx> #include <rtl/instance.hxx> +#include <osl/diagnose.h> using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/element.cxx b/unoxml/source/dom/element.cxx index 0ed516dd10ef..f1f10506501f 100644 --- a/unoxml/source/dom/element.cxx +++ b/unoxml/source/dom/element.cxx @@ -23,6 +23,7 @@ #include <boost/shared_ptr.hpp> +#include <osl/diagnose.h> #include <rtl/ustrbuf.hxx> #include <com/sun/star/xml/sax/FastToken.hpp> diff --git a/unoxml/source/dom/elementlist.cxx b/unoxml/source/dom/elementlist.cxx index 9230917a2266..c429cac6c783 100644 --- a/unoxml/source/dom/elementlist.cxx +++ b/unoxml/source/dom/elementlist.cxx @@ -21,6 +21,8 @@ #include <string.h> +#include <osl/diagnose.h> + #include <element.hxx> #include <document.hxx> diff --git a/unoxml/source/dom/entitiesmap.cxx b/unoxml/source/dom/entitiesmap.cxx index ca929d3bdb2f..08dfb35fef2b 100644 --- a/unoxml/source/dom/entitiesmap.cxx +++ b/unoxml/source/dom/entitiesmap.cxx @@ -19,6 +19,8 @@ #include <entitiesmap.hxx> +#include <osl/diagnose.h> + #include <documenttype.hxx> using namespace css::uno; diff --git a/unoxml/source/dom/entity.cxx b/unoxml/source/dom/entity.cxx index 45c8d1682341..cae0b81a9847 100644 --- a/unoxml/source/dom/entity.cxx +++ b/unoxml/source/dom/entity.cxx @@ -19,6 +19,8 @@ #include <entity.hxx> +#include <osl/diagnose.h> + #include <string.h> using namespace css::uno; diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx index aab0ffe9430b..40fae80affdf 100644 --- a/unoxml/source/dom/node.cxx +++ b/unoxml/source/dom/node.cxx @@ -31,6 +31,7 @@ #include <rtl/uuid.h> #include <rtl/instance.hxx> #include <osl/mutex.hxx> +#include <osl/diagnose.h> #include <com/sun/star/xml/sax/FastToken.hpp> diff --git a/unoxml/source/dom/notation.cxx b/unoxml/source/dom/notation.cxx index 66b9657b6e73..44a8a24a935b 100644 --- a/unoxml/source/dom/notation.cxx +++ b/unoxml/source/dom/notation.cxx @@ -21,6 +21,8 @@ #include <string.h> +#include <osl/diagnose.h> + using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/notationsmap.cxx b/unoxml/source/dom/notationsmap.cxx index 0f12247309df..6e84d07982f0 100644 --- a/unoxml/source/dom/notationsmap.cxx +++ b/unoxml/source/dom/notationsmap.cxx @@ -19,6 +19,8 @@ #include <notationsmap.hxx> +#include <osl/diagnose.h> + #include <documenttype.hxx> using namespace css::uno; diff --git a/unoxml/source/dom/text.cxx b/unoxml/source/dom/text.cxx index 229fdd80e8d1..cb0d5aaf6e20 100644 --- a/unoxml/source/dom/text.cxx +++ b/unoxml/source/dom/text.cxx @@ -19,6 +19,8 @@ #include <text.hxx> +#include <osl/diagnose.h> + using namespace css::uno; using namespace css::xml::dom; using namespace css::xml::sax; diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx index 1bec82992295..fdd5d8a29782 100644 --- a/unoxml/source/rdf/librdf_repository.cxx +++ b/unoxml/source/rdf/librdf_repository.cxx @@ -52,6 +52,7 @@ #include <rtl/ref.hxx> #include <rtl/ustring.hxx> +#include <osl/diagnose.h> #include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase3.hxx> #include <cppuhelper/basemutex.hxx> |