From 982a9a2059225fb2890e5582969e43858b4a0ee9 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 19 Jul 2020 21:10:11 +0200 Subject: compact namespace: svgio Change-Id: I249fbc53ac766c0491b956bb8618be6bfa24558c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99011 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svgio/inc/svgclippathnode.hxx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'svgio/inc/svgclippathnode.hxx') diff --git a/svgio/inc/svgclippathnode.hxx b/svgio/inc/svgclippathnode.hxx index 1aeca2655967..dacbf398f97d 100644 --- a/svgio/inc/svgclippathnode.hxx +++ b/svgio/inc/svgclippathnode.hxx @@ -25,9 +25,7 @@ #include #include -namespace svgio -{ - namespace svgreader +namespace svgio::svgreader { class SvgClipPathNode : public SvgNode { @@ -62,8 +60,8 @@ namespace svgio const basegfx::B2DHomMatrix* getTransform() const { return mpaTransform.get(); } void setTransform(const basegfx::B2DHomMatrix* pMatrix) { mpaTransform.reset(); if(pMatrix) mpaTransform.reset( new basegfx::B2DHomMatrix(*pMatrix) ); } }; - } // end of namespace svgreader -} // end of namespace svgio + +} // end of namespace svgio::svgreader #endif // INCLUDED_SVGIO_INC_SVGCLIPPATHNODE_HXX -- cgit