diff options
29 files changed, 61 insertions, 61 deletions
diff --git a/unoxml/source/dom/attr.cxx b/unoxml/source/dom/attr.cxx index 39cb53230c9a..0e5981555198 100644 --- a/unoxml/source/dom/attr.cxx +++ b/unoxml/source/dom/attr.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <attr.hxx> +#include "attr.hxx" #include <string.h> @@ -28,7 +28,7 @@ #include <com/sun/star/xml/dom/DOMException.hpp> #include <com/sun/star/xml/dom/events/XMutationEvent.hpp> -#include <document.hxx> +#include "document.hxx" using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/attributesmap.cxx b/unoxml/source/dom/attributesmap.cxx index 88b386196c80..4c0a86c17074 100644 --- a/unoxml/source/dom/attributesmap.cxx +++ b/unoxml/source/dom/attributesmap.cxx @@ -17,12 +17,12 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <attributesmap.hxx> +#include "attributesmap.hxx" #include <string.h> -#include <element.hxx> -#include <document.hxx> +#include "element.hxx" +#include "document.hxx" using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/cdatasection.cxx b/unoxml/source/dom/cdatasection.cxx index bd02fbd11a66..c0cf2d418b3b 100644 --- a/unoxml/source/dom/cdatasection.cxx +++ b/unoxml/source/dom/cdatasection.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <cdatasection.hxx> +#include "cdatasection.hxx" #include <com/sun/star/xml/sax/XExtendedDocumentHandler.hpp> diff --git a/unoxml/source/dom/cdatasection.hxx b/unoxml/source/dom/cdatasection.hxx index bd7e60cc2e55..569d7c7a8359 100644 --- a/unoxml/source/dom/cdatasection.hxx +++ b/unoxml/source/dom/cdatasection.hxx @@ -24,7 +24,7 @@ #include <com/sun/star/xml/dom/XCDATASection.hpp> #include <cppuhelper/implbase.hxx> -#include <text.hxx> +#include "text.hxx" namespace DOM { diff --git a/unoxml/source/dom/characterdata.cxx b/unoxml/source/dom/characterdata.cxx index 0e929522546b..ca29f993cfe1 100644 --- a/unoxml/source/dom/characterdata.cxx +++ b/unoxml/source/dom/characterdata.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <characterdata.hxx> +#include "characterdata.hxx" #include <string.h> @@ -27,7 +27,7 @@ #include <com/sun/star/xml/dom/events/XDocumentEvent.hpp> -#include "mutationevent.hxx" +#include <mutationevent.hxx> using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/childlist.cxx b/unoxml/source/dom/childlist.cxx index 3666eeb2b0f7..ec3811fa9161 100644 --- a/unoxml/source/dom/childlist.cxx +++ b/unoxml/source/dom/childlist.cxx @@ -17,12 +17,12 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <childlist.hxx> +#include "childlist.hxx" #include <libxml/tree.h> #include <node.hxx> -#include <document.hxx> +#include "document.hxx" using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/comment.cxx b/unoxml/source/dom/comment.cxx index 740e4813b886..179a0f2da5ff 100644 --- a/unoxml/source/dom/comment.cxx +++ b/unoxml/source/dom/comment.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <comment.hxx> +#include "comment.hxx" #include <com/sun/star/xml/sax/XExtendedDocumentHandler.hpp> diff --git a/unoxml/source/dom/comment.hxx b/unoxml/source/dom/comment.hxx index 1841e313ce6e..66fc8cd2795f 100644 --- a/unoxml/source/dom/comment.hxx +++ b/unoxml/source/dom/comment.hxx @@ -24,7 +24,7 @@ #include <com/sun/star/xml/dom/XComment.hpp> #include <cppuhelper/implbase.hxx> -#include <characterdata.hxx> +#include "characterdata.hxx" namespace DOM { diff --git a/unoxml/source/dom/document.cxx b/unoxml/source/dom/document.cxx index 580926273758..85cfdcc4e8a2 100644 --- a/unoxml/source/dom/document.cxx +++ b/unoxml/source/dom/document.cxx @@ -31,14 +31,14 @@ #include "documenttype.hxx" #include "elementlist.hxx" #include "domimplementation.hxx" -#include <entity.hxx> -#include <notation.hxx> - -#include "event.hxx" -#include "mutationevent.hxx" -#include "uievent.hxx" -#include "mouseevent.hxx" -#include "eventdispatcher.hxx" +#include "entity.hxx" +#include "notation.hxx" + +#include <event.hxx> +#include <mutationevent.hxx> +#include <uievent.hxx> +#include <mouseevent.hxx> +#include <eventdispatcher.hxx> #include <string.h> diff --git a/unoxml/source/dom/document.hxx b/unoxml/source/dom/document.hxx index 8d1fcd8fa587..85c82cf17099 100644 --- a/unoxml/source/dom/document.hxx +++ b/unoxml/source/dom/document.hxx @@ -46,7 +46,7 @@ #include <com/sun/star/io/XOutputStream.hpp> #include <com/sun/star/io/XStreamListener.hpp> -#include "node.hxx" +#include <node.hxx> namespace DOM { diff --git a/unoxml/source/dom/documentbuilder.cxx b/unoxml/source/dom/documentbuilder.cxx index d0e7ad0121e3..f32d92cf81a6 100644 --- a/unoxml/source/dom/documentbuilder.cxx +++ b/unoxml/source/dom/documentbuilder.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <documentbuilder.hxx> +#include "documentbuilder.hxx" #include <string.h> #include <stdio.h> @@ -44,7 +44,7 @@ #include <ucbhelper/commandenvironment.hxx> #include <node.hxx> -#include <document.hxx> +#include "document.hxx" using namespace css::io; using namespace css::lang; diff --git a/unoxml/source/dom/documentfragment.cxx b/unoxml/source/dom/documentfragment.cxx index 82a25aba5222..ce94a844ec3a 100644 --- a/unoxml/source/dom/documentfragment.cxx +++ b/unoxml/source/dom/documentfragment.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <documentfragment.hxx> +#include "documentfragment.hxx" using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/documenttype.cxx b/unoxml/source/dom/documenttype.cxx index 047f5742cd4c..d79e2d0d0f24 100644 --- a/unoxml/source/dom/documenttype.cxx +++ b/unoxml/source/dom/documenttype.cxx @@ -17,14 +17,14 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <documenttype.hxx> +#include "documenttype.hxx" #include <string.h> #include <osl/diagnose.h> -#include <entitiesmap.hxx> -#include <notationsmap.hxx> +#include "entitiesmap.hxx" +#include "notationsmap.hxx" using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/domimplementation.cxx b/unoxml/source/dom/domimplementation.cxx index 1bf354ced661..40afdb3196dd 100644 --- a/unoxml/source/dom/domimplementation.cxx +++ b/unoxml/source/dom/domimplementation.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <domimplementation.hxx> +#include "domimplementation.hxx" #include <rtl/instance.hxx> #include <osl/diagnose.h> diff --git a/unoxml/source/dom/element.cxx b/unoxml/source/dom/element.cxx index 8e415f74eadb..fa4ef9ce4670 100644 --- a/unoxml/source/dom/element.cxx +++ b/unoxml/source/dom/element.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <element.hxx> +#include "element.hxx" #include <string.h> @@ -31,12 +31,12 @@ #include <comphelper/attributelist.hxx> #include <node.hxx> -#include <attr.hxx> -#include <elementlist.hxx> -#include <attributesmap.hxx> -#include <document.hxx> +#include "attr.hxx" +#include "elementlist.hxx" +#include "attributesmap.hxx" +#include "document.hxx" -#include "mutationevent.hxx" +#include <mutationevent.hxx> using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/elementlist.cxx b/unoxml/source/dom/elementlist.cxx index 3d6057f0d056..7634a6e07d92 100644 --- a/unoxml/source/dom/elementlist.cxx +++ b/unoxml/source/dom/elementlist.cxx @@ -24,8 +24,8 @@ #include <cppuhelper/implbase.hxx> #include <osl/diagnose.h> -#include <element.hxx> -#include <document.hxx> +#include "element.hxx" +#include "document.hxx" using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/entitiesmap.cxx b/unoxml/source/dom/entitiesmap.cxx index c75b70d9e853..e5d8664d43b0 100644 --- a/unoxml/source/dom/entitiesmap.cxx +++ b/unoxml/source/dom/entitiesmap.cxx @@ -17,11 +17,11 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <entitiesmap.hxx> +#include "entitiesmap.hxx" #include <osl/diagnose.h> -#include <documenttype.hxx> +#include "documenttype.hxx" using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/entity.cxx b/unoxml/source/dom/entity.cxx index 87d0f9c74efb..cbea7bd362b6 100644 --- a/unoxml/source/dom/entity.cxx +++ b/unoxml/source/dom/entity.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <entity.hxx> +#include "entity.hxx" #include <osl/diagnose.h> diff --git a/unoxml/source/dom/entityreference.cxx b/unoxml/source/dom/entityreference.cxx index f4955aeba88b..4b328cc2ee46 100644 --- a/unoxml/source/dom/entityreference.cxx +++ b/unoxml/source/dom/entityreference.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <entityreference.hxx> +#include "entityreference.hxx" #include <string.h> diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx index 4386cfdd0637..7a32acb59b45 100644 --- a/unoxml/source/dom/node.cxx +++ b/unoxml/source/dom/node.cxx @@ -35,12 +35,12 @@ #include <comphelper/servicehelper.hxx> -#include <document.hxx> -#include <attr.hxx> -#include <childlist.hxx> +#include "document.hxx" +#include "attr.hxx" +#include "childlist.hxx" -#include "eventdispatcher.hxx" -#include "mutationevent.hxx" +#include <eventdispatcher.hxx> +#include <mutationevent.hxx> using namespace css; using namespace css::uno; diff --git a/unoxml/source/dom/notation.cxx b/unoxml/source/dom/notation.cxx index f3a137b3c712..dd94509f3028 100644 --- a/unoxml/source/dom/notation.cxx +++ b/unoxml/source/dom/notation.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <notation.hxx> +#include "notation.hxx" #include <string.h> diff --git a/unoxml/source/dom/notationsmap.cxx b/unoxml/source/dom/notationsmap.cxx index 30bb0e456d25..770923c79d55 100644 --- a/unoxml/source/dom/notationsmap.cxx +++ b/unoxml/source/dom/notationsmap.cxx @@ -17,11 +17,11 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <notationsmap.hxx> +#include "notationsmap.hxx" #include <osl/diagnose.h> -#include <documenttype.hxx> +#include "documenttype.hxx" using namespace css::uno; using namespace css::xml::dom; diff --git a/unoxml/source/dom/processinginstruction.cxx b/unoxml/source/dom/processinginstruction.cxx index 70f492ae4e4d..275441249feb 100644 --- a/unoxml/source/dom/processinginstruction.cxx +++ b/unoxml/source/dom/processinginstruction.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <processinginstruction.hxx> +#include "processinginstruction.hxx" #include <string.h> diff --git a/unoxml/source/dom/text.cxx b/unoxml/source/dom/text.cxx index 030c16db238b..10e8e271b749 100644 --- a/unoxml/source/dom/text.cxx +++ b/unoxml/source/dom/text.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <text.hxx> +#include "text.hxx" #include <osl/diagnose.h> diff --git a/unoxml/source/dom/text.hxx b/unoxml/source/dom/text.hxx index 8ef372981e32..5c38c1db6b8c 100644 --- a/unoxml/source/dom/text.hxx +++ b/unoxml/source/dom/text.hxx @@ -30,7 +30,7 @@ #include <com/sun/star/xml/dom/XNode.hpp> #include <com/sun/star/xml/dom/XText.hpp> -#include <characterdata.hxx> +#include "characterdata.hxx" namespace DOM { diff --git a/unoxml/source/xpath/nodelist.cxx b/unoxml/source/xpath/nodelist.cxx index 93fcc111d87f..1298a5fa82c6 100644 --- a/unoxml/source/xpath/nodelist.cxx +++ b/unoxml/source/xpath/nodelist.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <nodelist.hxx> +#include "nodelist.hxx" #include "../dom/document.hxx" diff --git a/unoxml/source/xpath/nodelist.hxx b/unoxml/source/xpath/nodelist.hxx index c4582624ab8f..c119eaaf03b9 100644 --- a/unoxml/source/xpath/nodelist.hxx +++ b/unoxml/source/xpath/nodelist.hxx @@ -30,8 +30,8 @@ #include <com/sun/star/xml/dom/XNodeList.hpp> #include <com/sun/star/xml/xpath/XXPathObject.hpp> -#include "libxml/tree.h" -#include "libxml/xpath.h" +#include <libxml/tree.h> +#include <libxml/xpath.h> #include <memory> diff --git a/unoxml/source/xpath/xpathapi.cxx b/unoxml/source/xpath/xpathapi.cxx index 63e21a1fe26e..8d3bf6afa596 100644 --- a/unoxml/source/xpath/xpathapi.cxx +++ b/unoxml/source/xpath/xpathapi.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <xpathapi.hxx> +#include "xpathapi.hxx" #include <stdarg.h> #include <string.h> @@ -29,10 +29,10 @@ #include <rtl/ustrbuf.hxx> -#include <nodelist.hxx> -#include <xpathobject.hxx> +#include "nodelist.hxx" +#include "xpathobject.hxx" -#include "node.hxx" +#include <node.hxx> #include "../dom/document.hxx" #include <cppuhelper/supportsservice.hxx> diff --git a/unoxml/source/xpath/xpathobject.cxx b/unoxml/source/xpath/xpathobject.cxx index 000b3e55c35c..827015b76283 100644 --- a/unoxml/source/xpath/xpathobject.cxx +++ b/unoxml/source/xpath/xpathobject.cxx @@ -17,12 +17,12 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <xpathobject.hxx> +#include "xpathobject.hxx" #include <string.h> #include "../dom/document.hxx" -#include <nodelist.hxx> +#include "nodelist.hxx" using namespace css::uno; using namespace css::xml::dom; |