diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-10-19 10:30:24 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-10-20 09:45:32 +0200 |
commit | da3a91e89f803d1c42b764c90071b30b547e686b (patch) | |
tree | b24e375196cafa667c9cf12a31b53b368886d8c3 /sc/source/ui/vba/vbachart.cxx | |
parent | 02411752218670d89726a06f746c2b622ed4efc6 (diff) |
Extended loplugin:ostr: Automatic rewrite O[U]StringLiteral: sc
Change-Id: Ieed908bfa2cb6370ead922dfc00dbdb4f905f3cf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158216
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc/source/ui/vba/vbachart.cxx')
-rw-r--r-- | sc/source/ui/vba/vbachart.cxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/sc/source/ui/vba/vbachart.cxx b/sc/source/ui/vba/vbachart.cxx index d6257591f333..d4cf3a0e1e89 100644 --- a/sc/source/ui/vba/vbachart.cxx +++ b/sc/source/ui/vba/vbachart.cxx @@ -52,20 +52,20 @@ using namespace ::ooo::vba::excel::XlAxisGroup; constexpr OUStringLiteral CHART_NAME(u"Name"); // #TODO move this constant to vbaseries.[ch]xx ( when it exists ) constexpr OUStringLiteral DEFAULTSERIESPREFIX(u"Series"); -constexpr OUStringLiteral DATAROWSOURCE(u"DataRowSource"); -constexpr OUStringLiteral UPDOWN(u"UpDown"); -constexpr OUStringLiteral VOLUME(u"Volume"); -constexpr OUStringLiteral LINES(u"Lines"); -constexpr OUStringLiteral SPLINETYPE(u"SplineType"); -constexpr OUStringLiteral SYMBOLTYPE(u"SymbolType"); -constexpr OUStringLiteral DEEP(u"Deep"); -constexpr OUStringLiteral SOLIDTYPE(u"SolidType"); -constexpr OUStringLiteral VERTICAL(u"Vertical"); -constexpr OUStringLiteral PERCENT(u"Percent"); -constexpr OUStringLiteral STACKED(u"Stacked"); -constexpr OUStringLiteral DIM3D(u"Dim3D"); -constexpr OUStringLiteral HASMAINTITLE(u"HasMainTitle"); -constexpr OUStringLiteral HASLEGEND(u"HasLegend"); +constexpr OUString DATAROWSOURCE(u"DataRowSource"_ustr); +constexpr OUString UPDOWN(u"UpDown"_ustr); +constexpr OUString VOLUME(u"Volume"_ustr); +constexpr OUString LINES(u"Lines"_ustr); +constexpr OUString SPLINETYPE(u"SplineType"_ustr); +constexpr OUString SYMBOLTYPE(u"SymbolType"_ustr); +constexpr OUString DEEP(u"Deep"_ustr); +constexpr OUString SOLIDTYPE(u"SolidType"_ustr); +constexpr OUString VERTICAL(u"Vertical"_ustr); +constexpr OUString PERCENT(u"Percent"_ustr); +constexpr OUString STACKED(u"Stacked"_ustr); +constexpr OUString DIM3D(u"Dim3D"_ustr); +constexpr OUString HASMAINTITLE(u"HasMainTitle"_ustr); +constexpr OUString HASLEGEND(u"HasLegend"_ustr); ScVbaChart::ScVbaChart( const css::uno::Reference< ov::XHelperInterface >& _xParent, const css::uno::Reference< css::uno::XComponentContext >& _xContext, const css::uno::Reference< css::lang::XComponent >& _xChartComponent, css::uno::Reference< css::table::XTableChart > _xTableChart ) : ChartImpl_BASE( _xParent, _xContext ), mxTableChart(std::move( _xTableChart )) { |