summaryrefslogtreecommitdiff
path: root/drawinglayer/source/attribute/sdrglowattribute.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-07-16 18:11:15 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-07-16 20:36:17 +0200
commit1ebe85bc1fc6cf2adeb05aac78749806e20a71c2 (patch)
tree8fdd91bd58ce406605d6676c09b933af2273e79b /drawinglayer/source/attribute/sdrglowattribute.cxx
parent41e524b4b83abd83db9091437a9b514c49ff161d (diff)
compact namespace: drawinglayer
Change-Id: I32648ae81c4a06f944b70c0cca1694333ec02859 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98916 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'drawinglayer/source/attribute/sdrglowattribute.cxx')
-rw-r--r--drawinglayer/source/attribute/sdrglowattribute.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/drawinglayer/source/attribute/sdrglowattribute.cxx b/drawinglayer/source/attribute/sdrglowattribute.cxx
index 90367ff67ea0..f0c0174e7bf5 100644
--- a/drawinglayer/source/attribute/sdrglowattribute.cxx
+++ b/drawinglayer/source/attribute/sdrglowattribute.cxx
@@ -17,9 +17,7 @@
#include <sal/log.hxx>
-namespace drawinglayer
-{
-namespace attribute
+namespace drawinglayer::attribute
{
SdrGlowAttribute::SdrGlowAttribute(sal_Int32 nRadius, const Color& rColor)
: m_nRadius(nRadius)
@@ -44,7 +42,6 @@ bool SdrGlowAttribute::operator==(const SdrGlowAttribute& rCandidate) const
return m_nRadius == rCandidate.m_nRadius && m_color == rCandidate.m_color;
}
-} // end of namespace attribute
-} // end of namespace drawinglayer
+} // end of namespace drawinglayer::attribute
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */