summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-01-13 19:48:37 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-01-31 18:36:09 +0100
commitc82efb610bf556ea12cbe4f94568ac619897799f (patch)
tree997f443876b4f3c9f10a46f2d0df65093f9d8731 /unoxml
parent04405edc3fac32938b8940bc767656ea6c7820f9 (diff)
clang-tidy modernize-concat-nested-namespace
Change-Id: Iab35a8b85b3ba1df791c774f40b037f9420a071a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86708 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/events/event.cxx4
-rw-r--r--unoxml/source/events/eventdispatcher.cxx4
-rw-r--r--unoxml/source/events/mouseevent.cxx4
-rw-r--r--unoxml/source/events/mutationevent.cxx4
-rw-r--r--unoxml/source/events/uievent.cxx4
5 files changed, 10 insertions, 10 deletions
diff --git a/unoxml/source/events/event.cxx b/unoxml/source/events/event.cxx
index ade1e56285db..bc12bb5f83c1 100644
--- a/unoxml/source/events/event.cxx
+++ b/unoxml/source/events/event.cxx
@@ -22,7 +22,7 @@
using namespace css::uno;
using namespace css::xml::dom::events;
-namespace DOM { namespace events
+namespace DOM::events
{
CEvent::CEvent()
@@ -103,6 +103,6 @@ namespace DOM { namespace events
m_cancelable = cancelableArg;
}
-}}
+}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/unoxml/source/events/eventdispatcher.cxx b/unoxml/source/events/eventdispatcher.cxx
index 40a08305bfd0..ef07dff5ad2d 100644
--- a/unoxml/source/events/eventdispatcher.cxx
+++ b/unoxml/source/events/eventdispatcher.cxx
@@ -32,7 +32,7 @@ using namespace css::uno;
using namespace css::xml::dom;
using namespace css::xml::dom::events;
-namespace DOM { namespace events {
+namespace DOM::events {
void CEventDispatcher::addListener(xmlNodePtr pNode, const OUString& aType, const Reference<XEventListener>& aListener, bool bCapture)
{
@@ -245,6 +245,6 @@ namespace DOM { namespace events {
}
}
}
-}}
+}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/unoxml/source/events/mouseevent.cxx b/unoxml/source/events/mouseevent.cxx
index 6b84ec577be7..8f276f0eae9a 100644
--- a/unoxml/source/events/mouseevent.cxx
+++ b/unoxml/source/events/mouseevent.cxx
@@ -23,7 +23,7 @@ using namespace css::uno;
using namespace css::xml::dom::events;
using namespace css::xml::dom::views;
-namespace DOM { namespace events
+namespace DOM::events
{
CMouseEvent::CMouseEvent()
: CMouseEvent_Base()
@@ -191,6 +191,6 @@ namespace DOM { namespace events
// base initializer
CUIEvent::initEvent(eventTypeArg, canBubbleArg, cancelableArg);
}
-}}
+}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/unoxml/source/events/mutationevent.cxx b/unoxml/source/events/mutationevent.cxx
index b0648a6de5a9..a81720c7c1e0 100644
--- a/unoxml/source/events/mutationevent.cxx
+++ b/unoxml/source/events/mutationevent.cxx
@@ -23,7 +23,7 @@ using namespace css::uno;
using namespace css::xml::dom;
using namespace css::xml::dom::events;
-namespace DOM { namespace events
+namespace DOM::events
{
CMutationEvent::CMutationEvent()
: CMutationEvent_Base()
@@ -132,6 +132,6 @@ namespace DOM { namespace events
// base initializer
CEvent::initEvent(eventTypeArg, canBubbleArg, cancelableArg);
}
-}}
+}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/unoxml/source/events/uievent.cxx b/unoxml/source/events/uievent.cxx
index 48ad583c2d4c..faa15113b824 100644
--- a/unoxml/source/events/uievent.cxx
+++ b/unoxml/source/events/uievent.cxx
@@ -23,7 +23,7 @@ using namespace css::uno;
using namespace css::xml::dom::events;
using namespace css::xml::dom::views;
-namespace DOM { namespace events
+namespace DOM::events
{
CUIEvent::CUIEvent()
: CUIEvent_Base()
@@ -110,6 +110,6 @@ namespace DOM { namespace events
// base initializer
CEvent::initEvent(eventTypeArg, canBubbleArg, cancelableArg);
}
-}}
+}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */