summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unoxml/inc/event.hxx (renamed from unoxml/source/events/event.hxx)4
-rw-r--r--unoxml/inc/eventdispatcher.hxx (renamed from unoxml/source/events/eventdispatcher.hxx)4
-rw-r--r--unoxml/inc/mouseevent.hxx (renamed from unoxml/source/events/mouseevent.hxx)4
-rw-r--r--unoxml/inc/mutationevent.hxx (renamed from unoxml/source/events/mutationevent.hxx)4
-rw-r--r--unoxml/inc/uievent.hxx (renamed from unoxml/source/events/uievent.hxx)4
-rw-r--r--unoxml/source/dom/characterdata.cxx2
-rw-r--r--unoxml/source/dom/document.cxx10
-rw-r--r--unoxml/source/dom/element.cxx2
-rw-r--r--unoxml/source/dom/node.cxx4
9 files changed, 19 insertions, 19 deletions
diff --git a/unoxml/source/events/event.hxx b/unoxml/inc/event.hxx
index ed07d59f2639..598f8702e985 100644
--- a/unoxml/source/events/event.hxx
+++ b/unoxml/inc/event.hxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_UNOXML_SOURCE_EVENTS_EVENT_HXX
-#define INCLUDED_UNOXML_SOURCE_EVENTS_EVENT_HXX
+#ifndef INCLUDED_UNOXML_INC_EVENT_HXX
+#define INCLUDED_UNOXML_INC_EVENT_HXX
#include <sal/types.h>
diff --git a/unoxml/source/events/eventdispatcher.hxx b/unoxml/inc/eventdispatcher.hxx
index d992ff30d8d3..ee8bec567590 100644
--- a/unoxml/source/events/eventdispatcher.hxx
+++ b/unoxml/inc/eventdispatcher.hxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_UNOXML_SOURCE_EVENTS_EVENTDISPATCHER_HXX
-#define INCLUDED_UNOXML_SOURCE_EVENTS_EVENTDISPATCHER_HXX
+#ifndef INCLUDED_UNOXML_INC_EVENTDISPATCHER_HXX
+#define INCLUDED_UNOXML_INC_EVENTDISPATCHER_HXX
#include <map>
#include <vector>
diff --git a/unoxml/source/events/mouseevent.hxx b/unoxml/inc/mouseevent.hxx
index 87ea75a2bb66..3f6788e89f13 100644
--- a/unoxml/source/events/mouseevent.hxx
+++ b/unoxml/inc/mouseevent.hxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_UNOXML_SOURCE_EVENTS_MOUSEEVENT_HXX
-#define INCLUDED_UNOXML_SOURCE_EVENTS_MOUSEEVENT_HXX
+#ifndef INCLUDED_UNOXML_INC_MOUSEEVENT_HXX
+#define INCLUDED_UNOXML_INC_MOUSEEVENT_HXX
#include <com/sun/star/xml/dom/events/PhaseType.hpp>
#include <com/sun/star/xml/dom/events/XMouseEvent.hpp>
diff --git a/unoxml/source/events/mutationevent.hxx b/unoxml/inc/mutationevent.hxx
index c8dfc3aed1a0..5499b5a93633 100644
--- a/unoxml/source/events/mutationevent.hxx
+++ b/unoxml/inc/mutationevent.hxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_UNOXML_SOURCE_EVENTS_MUTATIONEVENT_HXX
-#define INCLUDED_UNOXML_SOURCE_EVENTS_MUTATIONEVENT_HXX
+#ifndef INCLUDED_UNOXML_INC_MUTATIONEVENT_HXX
+#define INCLUDED_UNOXML_INC_MUTATIONEVENT_HXX
#include <sal/types.h>
diff --git a/unoxml/source/events/uievent.hxx b/unoxml/inc/uievent.hxx
index c82e600c24c6..7f7d4397a218 100644
--- a/unoxml/source/events/uievent.hxx
+++ b/unoxml/inc/uievent.hxx
@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_UNOXML_SOURCE_EVENTS_UIEVENT_HXX
-#define INCLUDED_UNOXML_SOURCE_EVENTS_UIEVENT_HXX
+#ifndef INCLUDED_UNOXML_INC_UIEVENT_HXX
+#define INCLUDED_UNOXML_INC_UIEVENT_HXX
#include <sal/types.h>
diff --git a/unoxml/source/dom/characterdata.cxx b/unoxml/source/dom/characterdata.cxx
index e8ac2aee7c23..0e929522546b 100644
--- a/unoxml/source/dom/characterdata.cxx
+++ b/unoxml/source/dom/characterdata.cxx
@@ -27,7 +27,7 @@
#include <com/sun/star/xml/dom/events/XDocumentEvent.hpp>
-#include "../events/mutationevent.hxx"
+#include "mutationevent.hxx"
using namespace css::uno;
using namespace css::xml::dom;
diff --git a/unoxml/source/dom/document.cxx b/unoxml/source/dom/document.cxx
index bc2969c7abec..580926273758 100644
--- a/unoxml/source/dom/document.cxx
+++ b/unoxml/source/dom/document.cxx
@@ -34,11 +34,11 @@
#include <entity.hxx>
#include <notation.hxx>
-#include "../events/event.hxx"
-#include "../events/mutationevent.hxx"
-#include "../events/uievent.hxx"
-#include "../events/mouseevent.hxx"
-#include "../events/eventdispatcher.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/element.cxx b/unoxml/source/dom/element.cxx
index b14890fa29d7..8e415f74eadb 100644
--- a/unoxml/source/dom/element.cxx
+++ b/unoxml/source/dom/element.cxx
@@ -36,7 +36,7 @@
#include <attributesmap.hxx>
#include <document.hxx>
-#include "../events/mutationevent.hxx"
+#include "mutationevent.hxx"
using namespace css::uno;
using namespace css::xml::dom;
diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx
index aeb77cfcd0a5..4386cfdd0637 100644
--- a/unoxml/source/dom/node.cxx
+++ b/unoxml/source/dom/node.cxx
@@ -39,8 +39,8 @@
#include <attr.hxx>
#include <childlist.hxx>
-#include "../events/eventdispatcher.hxx"
-#include "../events/mutationevent.hxx"
+#include "eventdispatcher.hxx"
+#include "mutationevent.hxx"
using namespace css;
using namespace css::uno;