diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-10 09:18:09 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-10 12:03:13 +0200 |
commit | c37fe8886d8ce2f6374decc370a09b45e589ee0d (patch) | |
tree | 7a92d439f2ef323117bd3391d193f0d53c3a759e /svgio | |
parent | 366d08f2f6d4de922f6099c62bb81b49d89e0a68 (diff) |
compact namespace in sal..svgio
Change-Id: I7e70614ea5a1cb1a1dc0ef8e9fb6fd48e85c3562
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93904
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/inc/svgcharacternode.hxx | 2 | ||||
-rw-r--r-- | svgio/inc/svgdocumenthandler.hxx | 2 | ||||
-rw-r--r-- | svgio/inc/svgstyleattributes.hxx | 4 | ||||
-rw-r--r-- | svgio/source/svguno/xsvgparser.hxx | 8 |
4 files changed, 8 insertions, 8 deletions
diff --git a/svgio/inc/svgcharacternode.hxx b/svgio/inc/svgcharacternode.hxx index 20d6eec7b0da..647d327494ee 100644 --- a/svgio/inc/svgcharacternode.hxx +++ b/svgio/inc/svgcharacternode.hxx @@ -22,7 +22,7 @@ #include "svgnode.hxx" -namespace drawinglayer { namespace primitive2d { class TextSimplePortionPrimitive2D; }} +namespace drawinglayer::primitive2d { class TextSimplePortionPrimitive2D; } namespace svgio { diff --git a/svgio/inc/svgdocumenthandler.hxx b/svgio/inc/svgdocumenthandler.hxx index c6b657207d54..2fd7c1db28d8 100644 --- a/svgio/inc/svgdocumenthandler.hxx +++ b/svgio/inc/svgdocumenthandler.hxx @@ -24,7 +24,7 @@ #include "svgdocument.hxx" #include <cppuhelper/implbase.hxx> -namespace svgio { namespace svgreader { class SvgCharacterNode; }} +namespace svgio::svgreader { class SvgCharacterNode; } namespace svgio { diff --git a/svgio/inc/svgstyleattributes.hxx b/svgio/inc/svgstyleattributes.hxx index bc668de1a5fb..dc0a86a88fe6 100644 --- a/svgio/inc/svgstyleattributes.hxx +++ b/svgio/inc/svgstyleattributes.hxx @@ -29,13 +29,13 @@ // predefines -namespace svgio { namespace svgreader { +namespace svgio::svgreader { class SvgGradientNode; class SvgPatternNode; class SvgMarkerNode; class SvgClipPathNode; class SvgMaskNode; -}} +} namespace svgio diff --git a/svgio/source/svguno/xsvgparser.hxx b/svgio/source/svguno/xsvgparser.hxx index f7e0185b671a..158b3dd137c6 100644 --- a/svgio/source/svguno/xsvgparser.hxx +++ b/svgio/source/svguno/xsvgparser.hxx @@ -25,14 +25,14 @@ #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Sequence.hxx> -namespace com { namespace sun { namespace star { +namespace com::sun::star { namespace uno { class XComponentContext; class XInterface; } -} } } +} -namespace svgio { namespace svgreader { +namespace svgio::svgreader { css::uno::Reference< css::uno::XInterface > XSvgParser_createInstance( css::uno::Reference< css::uno::XComponentContext > const &); @@ -42,7 +42,7 @@ OUString XSvgParser_getImplementationName(); css::uno::Sequence< OUString > XSvgParser_getSupportedServiceNames(); -} } +} #endif |