diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-01 14:52:05 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-03 09:21:51 +0200 |
commit | 47cd34a60ff9048404075823e519f1abdd4b0e9a (patch) | |
tree | e9728dd7c686d23f90b4331f105d6f5f8c1176cd /include/cppcanvas | |
parent | c79dd92480cbc409a7061da7f3dd3abaaf9a4883 (diff) |
use more compact namespace syntax in /include
excluding the UDK headers of course
Change-Id: Iac7ab83d60265f7d362c860776f1de9d5e444ec0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93268
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/cppcanvas')
-rw-r--r-- | include/cppcanvas/bitmap.hxx | 4 | ||||
-rw-r--r-- | include/cppcanvas/canvas.hxx | 4 | ||||
-rw-r--r-- | include/cppcanvas/polypolygon.hxx | 4 | ||||
-rw-r--r-- | include/cppcanvas/spritecanvas.hxx | 4 | ||||
-rw-r--r-- | include/cppcanvas/vclfactory.hxx | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/include/cppcanvas/bitmap.hxx b/include/cppcanvas/bitmap.hxx index 0dd3f69f3a84..1b163b82d479 100644 --- a/include/cppcanvas/bitmap.hxx +++ b/include/cppcanvas/bitmap.hxx @@ -25,10 +25,10 @@ #include <cppcanvas/bitmapcanvas.hxx> #include <memory> -namespace com { namespace sun { namespace star { namespace rendering +namespace com::sun::star::rendering { class XBitmap; -} } } } +} /* Definition of Bitmap interface */ diff --git a/include/cppcanvas/canvas.hxx b/include/cppcanvas/canvas.hxx index ec34af5e0caa..97562ede24fb 100644 --- a/include/cppcanvas/canvas.hxx +++ b/include/cppcanvas/canvas.hxx @@ -29,11 +29,11 @@ namespace basegfx class B2DPolyPolygon; } -namespace com { namespace sun { namespace star { namespace rendering +namespace com::sun::star::rendering { class XCanvas; struct ViewState; -} } } } +} /* Definition of BitmapCanvas */ diff --git a/include/cppcanvas/polypolygon.hxx b/include/cppcanvas/polypolygon.hxx index 058ea25940d4..917ef4dafb04 100644 --- a/include/cppcanvas/polypolygon.hxx +++ b/include/cppcanvas/polypolygon.hxx @@ -25,10 +25,10 @@ #include <cppcanvas/color.hxx> #include <memory> -namespace com { namespace sun { namespace star { namespace rendering +namespace com::sun::star::rendering { class XPolyPolygon2D; -} } } } +} /* Definition of tools::PolyPolygon interface */ diff --git a/include/cppcanvas/spritecanvas.hxx b/include/cppcanvas/spritecanvas.hxx index abeef3d2b25f..c4d100dbedb9 100644 --- a/include/cppcanvas/spritecanvas.hxx +++ b/include/cppcanvas/spritecanvas.hxx @@ -25,10 +25,10 @@ #include <cppcanvas/customsprite.hxx> #include <memory> -namespace com { namespace sun { namespace star { namespace rendering +namespace com::sun::star::rendering { class XSpriteCanvas; -} } } } +} /* Definition of SpriteCanvas */ diff --git a/include/cppcanvas/vclfactory.hxx b/include/cppcanvas/vclfactory.hxx index b36b66a7ad34..73867626d3c0 100644 --- a/include/cppcanvas/vclfactory.hxx +++ b/include/cppcanvas/vclfactory.hxx @@ -33,12 +33,12 @@ class BitmapEx; class GDIMetaFile; -namespace com { namespace sun { namespace star { namespace rendering +namespace com::sun::star::rendering { class XCanvas; class XBitmapCanvas; class XSpriteCanvas; -} } } } +} /* Definition of VCLFactory class */ |