diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-08 10:59:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-08 12:40:03 +0200 |
commit | 6751a89552f6d739b4e1563143fd3a019478f513 (patch) | |
tree | e3a5490c5c505b0b17a3e952492e389974898978 /codemaker | |
parent | 15adfafee5b48d6f88a0b970c50e5c5bc77a4ab1 (diff) |
compact namespace in canvas..cui
Change-Id: I7bd0c2a55b936896fcfe7e1a374871008a18618f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93706
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'codemaker')
-rw-r--r-- | codemaker/source/cppumaker/dependencies.hxx | 4 | ||||
-rw-r--r-- | codemaker/source/cppumaker/dumputils.hxx | 4 | ||||
-rw-r--r-- | codemaker/source/cppumaker/includes.hxx | 4 | ||||
-rw-r--r-- | codemaker/source/javamaker/classfile.hxx | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/codemaker/source/cppumaker/dependencies.hxx b/codemaker/source/cppumaker/dependencies.hxx index 3143b4e40483..2116404f60dc 100644 --- a/codemaker/source/cppumaker/dependencies.hxx +++ b/codemaker/source/cppumaker/dependencies.hxx @@ -31,7 +31,7 @@ class TypeManager; /// @HTML -namespace codemaker { namespace cppumaker { +namespace codemaker::cppumaker { /** A simple class to track which other entities a given entity depends on. @@ -121,7 +121,7 @@ private: bool m_sequenceDependency; }; -} } +} #endif diff --git a/codemaker/source/cppumaker/dumputils.hxx b/codemaker/source/cppumaker/dumputils.hxx index 543427cb41f0..c89b40df994b 100644 --- a/codemaker/source/cppumaker/dumputils.hxx +++ b/codemaker/source/cppumaker/dumputils.hxx @@ -25,7 +25,7 @@ namespace rtl { class OUString; } class FileStream; -namespace codemaker { namespace cppumaker { +namespace codemaker::cppumaker { bool dumpNamespaceOpen( FileStream & out, rtl::OUString const & entityName, bool fullModuleType); @@ -35,7 +35,7 @@ bool dumpNamespaceClose( void dumpTypeIdentifier(FileStream & out, rtl::OUString const & entityName); -} } +} #endif diff --git a/codemaker/source/cppumaker/includes.hxx b/codemaker/source/cppumaker/includes.hxx index 35c3c7877712..0203868374f2 100644 --- a/codemaker/source/cppumaker/includes.hxx +++ b/codemaker/source/cppumaker/includes.hxx @@ -28,7 +28,7 @@ class FileStream; class TypeManager; -namespace codemaker { namespace cppumaker { +namespace codemaker::cppumaker { class Includes { public: @@ -93,7 +93,7 @@ private: bool m_includeTypelibTypedescriptionH; }; -} } +} #endif // INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_INCLUDES_HXX diff --git a/codemaker/source/javamaker/classfile.hxx b/codemaker/source/javamaker/classfile.hxx index db6388a3e958..9b8970748f9d 100644 --- a/codemaker/source/javamaker/classfile.hxx +++ b/codemaker/source/javamaker/classfile.hxx @@ -30,7 +30,7 @@ class FileStream; -namespace codemaker { namespace javamaker { +namespace codemaker::javamaker { class ClassFile { public: @@ -235,7 +235,7 @@ private: friend class Code; }; -} } +} #endif // INCLUDED_CODEMAKER_SOURCE_JAVAMAKER_CLASSFILE_HXX |