diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-10 15:19:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-07-20 10:12:57 +0200 |
commit | da7489eb6aa9dfedb43f9be6e1b90e3ae06a75cc (patch) | |
tree | a83a32677046ede93c124af8edc8801bcb6e896f /framework/source | |
parent | abea0d6647c7f1f7e76c73c26cb80e6a67dc5111 (diff) |
compact namespace decl
used
git grep -lw namespace
| xargs perl -i -p0e 's/(\w+)\s*.\{.\s*namespace\s*(\w+)/\1::\2/smg;'
to do the initial replace, then compiled and fixed.
Change-Id: If69904d75940c851aeffab0e78c4ba02cc968d44
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98526
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/source')
-rw-r--r-- | framework/source/inc/pattern/frame.hxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/framework/source/inc/pattern/frame.hxx b/framework/source/inc/pattern/frame.hxx index 9585af25665c..46b86f56f891 100644 --- a/framework/source/inc/pattern/frame.hxx +++ b/framework/source/inc/pattern/frame.hxx @@ -27,9 +27,7 @@ // namespaces -namespace framework{ - namespace pattern{ - namespace frame{ +namespace framework::pattern::frame{ /** @short close (or dispose) the given resource. @@ -77,9 +75,7 @@ inline bool closeIt(const css::uno::Reference< css::uno::XInterface >& xResource return true; } - } // namespace frame - } // namespace pattern -} // namespace framework +} // namespace framework::pattern::frame #endif // INCLUDED_FRAMEWORK_SOURCE_INC_PATTERN_FRAME_HXX |