diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-14 15:21:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-14 18:09:25 +0100 |
commit | db54dd2351a4c2d4e54e97db6ba19a65dfbee858 (patch) | |
tree | f97f06f5ab8460c0289cabff86e8737d75b3be98 /chart2/source/model | |
parent | d038e27a98097c40af8bee3e7f24bad715742e91 (diff) |
clang-tidy modernize-concat-nested-namespace in chart2
Change-Id: I320234b60963d80f6870a9ce1fead8e29de437aa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86759
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/model')
-rw-r--r-- | chart2/source/model/main/CartesianCoordinateSystem.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/main/DataSeries.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/main/FormattedString.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/main/GridProperties.cxx | 4 | ||||
-rw-r--r-- | chart2/source/model/main/Legend.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/main/PageBackground.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/main/PolarCoordinateSystem.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/main/StockBar.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/main/Title.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/template/AreaChartType.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/template/BarChartType.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/template/CandleStickChartType.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/template/ColumnChartType.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/template/FilledNetChartType.cxx | 2 | ||||
-rw-r--r-- | chart2/source/model/template/LineChartType.cxx | 2 |
15 files changed, 16 insertions, 16 deletions
diff --git a/chart2/source/model/main/CartesianCoordinateSystem.cxx b/chart2/source/model/main/CartesianCoordinateSystem.cxx index 2549720ed0d8..288749d8540e 100644 --- a/chart2/source/model/main/CartesianCoordinateSystem.cxx +++ b/chart2/source/model/main/CartesianCoordinateSystem.cxx @@ -26,7 +26,7 @@ using namespace ::com::sun::star; using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::Sequence; -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } namespace { diff --git a/chart2/source/model/main/DataSeries.cxx b/chart2/source/model/main/DataSeries.cxx index 26226172bf43..5c0ded40cda7 100644 --- a/chart2/source/model/main/DataSeries.cxx +++ b/chart2/source/model/main/DataSeries.cxx @@ -34,7 +34,7 @@ #include <algorithm> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; diff --git a/chart2/source/model/main/FormattedString.cxx b/chart2/source/model/main/FormattedString.cxx index 7ace8d2f4e3c..0d6e733a2c31 100644 --- a/chart2/source/model/main/FormattedString.cxx +++ b/chart2/source/model/main/FormattedString.cxx @@ -25,7 +25,7 @@ #include <cppuhelper/supportsservice.hxx> #include <tools/diagnose_ex.h> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; diff --git a/chart2/source/model/main/GridProperties.cxx b/chart2/source/model/main/GridProperties.cxx index a7fb5be85f6d..44d3fffd8c67 100644 --- a/chart2/source/model/main/GridProperties.cxx +++ b/chart2/source/model/main/GridProperties.cxx @@ -27,8 +27,8 @@ #include <cppuhelper/supportsservice.hxx> #include <tools/diagnose_ex.h> -namespace com { namespace sun { namespace star { namespace beans { class XPropertySetInfo; } } } } -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::beans { class XPropertySetInfo; } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; diff --git a/chart2/source/model/main/Legend.cxx b/chart2/source/model/main/Legend.cxx index 654ccc45cbcd..6381d232e31d 100644 --- a/chart2/source/model/main/Legend.cxx +++ b/chart2/source/model/main/Legend.cxx @@ -35,7 +35,7 @@ #include <algorithm> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; using namespace ::com::sun::star::beans::PropertyAttribute; diff --git a/chart2/source/model/main/PageBackground.cxx b/chart2/source/model/main/PageBackground.cxx index 2dec38051d46..5dda4cb5a7b4 100644 --- a/chart2/source/model/main/PageBackground.cxx +++ b/chart2/source/model/main/PageBackground.cxx @@ -31,7 +31,7 @@ #include <vector> #include <algorithm> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; diff --git a/chart2/source/model/main/PolarCoordinateSystem.cxx b/chart2/source/model/main/PolarCoordinateSystem.cxx index 151f31036e13..f6780bbb54a3 100644 --- a/chart2/source/model/main/PolarCoordinateSystem.cxx +++ b/chart2/source/model/main/PolarCoordinateSystem.cxx @@ -21,7 +21,7 @@ #include <servicenames_coosystems.hxx> #include <cppuhelper/supportsservice.hxx> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; diff --git a/chart2/source/model/main/StockBar.cxx b/chart2/source/model/main/StockBar.cxx index e9ac5e4a529f..22e082ad06b3 100644 --- a/chart2/source/model/main/StockBar.cxx +++ b/chart2/source/model/main/StockBar.cxx @@ -28,7 +28,7 @@ #include <algorithm> -namespace com { namespace sun { namespace star { namespace beans { class XPropertySetInfo; } } } } +namespace com::sun::star::beans { class XPropertySetInfo; } using namespace ::com::sun::star; diff --git a/chart2/source/model/main/Title.cxx b/chart2/source/model/main/Title.cxx index 256199a99b5d..a42374ce5f51 100644 --- a/chart2/source/model/main/Title.cxx +++ b/chart2/source/model/main/Title.cxx @@ -35,7 +35,7 @@ #include <vector> #include <algorithm> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; using namespace ::com::sun::star::beans::PropertyAttribute; diff --git a/chart2/source/model/template/AreaChartType.cxx b/chart2/source/model/template/AreaChartType.cxx index 947c885cee84..840bdba036d7 100644 --- a/chart2/source/model/template/AreaChartType.cxx +++ b/chart2/source/model/template/AreaChartType.cxx @@ -21,7 +21,7 @@ #include <servicenames_charttypes.hxx> #include <cppuhelper/supportsservice.hxx> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; diff --git a/chart2/source/model/template/BarChartType.cxx b/chart2/source/model/template/BarChartType.cxx index 4c5511c100f3..87675e3f140d 100644 --- a/chart2/source/model/template/BarChartType.cxx +++ b/chart2/source/model/template/BarChartType.cxx @@ -21,7 +21,7 @@ #include <servicenames_charttypes.hxx> #include <cppuhelper/supportsservice.hxx> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; diff --git a/chart2/source/model/template/CandleStickChartType.cxx b/chart2/source/model/template/CandleStickChartType.cxx index 606d51a6c035..af0c1f04f52b 100644 --- a/chart2/source/model/template/CandleStickChartType.cxx +++ b/chart2/source/model/template/CandleStickChartType.cxx @@ -26,7 +26,7 @@ #include <cppuhelper/supportsservice.hxx> #include <tools/diagnose_ex.h> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; diff --git a/chart2/source/model/template/ColumnChartType.cxx b/chart2/source/model/template/ColumnChartType.cxx index 4cf39ed145de..4c95b1c1b0b8 100644 --- a/chart2/source/model/template/ColumnChartType.cxx +++ b/chart2/source/model/template/ColumnChartType.cxx @@ -23,7 +23,7 @@ #include <com/sun/star/beans/PropertyAttribute.hpp> #include <cppuhelper/supportsservice.hxx> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; using ::com::sun::star::uno::Sequence; diff --git a/chart2/source/model/template/FilledNetChartType.cxx b/chart2/source/model/template/FilledNetChartType.cxx index 19e49a2365d0..3179317daee5 100644 --- a/chart2/source/model/template/FilledNetChartType.cxx +++ b/chart2/source/model/template/FilledNetChartType.cxx @@ -21,7 +21,7 @@ #include <servicenames_charttypes.hxx> #include <cppuhelper/supportsservice.hxx> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; using namespace ::com::sun::star::chart2; diff --git a/chart2/source/model/template/LineChartType.cxx b/chart2/source/model/template/LineChartType.cxx index 538bf1cb5cf1..64b2fe9c146f 100644 --- a/chart2/source/model/template/LineChartType.cxx +++ b/chart2/source/model/template/LineChartType.cxx @@ -26,7 +26,7 @@ #include <com/sun/star/beans/PropertyAttribute.hpp> #include <com/sun/star/chart2/CurveStyle.hpp> -namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } } +namespace com::sun::star::uno { class XComponentContext; } using namespace ::com::sun::star; |