diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-26 13:53:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-26 13:55:33 +0200 |
commit | cf029c125d188c22b87590f1d58d3866f9ea796a (patch) | |
tree | 66fd2e18364f58f3618783d61af4b070f1c181ca /sc/source/ui/vba/vbarange.cxx | |
parent | 8437b42cff4ef9aeb3428432dac77851885b13e3 (diff) |
loplugin:stringconstant: handle OUString+=OUString(literal)
Change-Id: Ie4e62535848718ca66a1fa977b09891e91ee7421
Diffstat (limited to 'sc/source/ui/vba/vbarange.cxx')
-rw-r--r-- | sc/source/ui/vba/vbarange.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx index b1ee0e2be142..bf31b237bed0 100644 --- a/sc/source/ui/vba/vbarange.cxx +++ b/sc/source/ui/vba/vbarange.cxx @@ -2049,7 +2049,7 @@ ScVbaRange::Address( const uno::Any& RowAbsolute, const uno::Any& ColumnAbsolut uno::Reference< excel::XRange > xRange( xCollection->Item( uno::makeAny( index ), uno::Any() ), uno::UNO_QUERY_THROW ); if ( index > 1 ) { - sAddress += OUString( ',' ); + sAddress += ","; // force external to be false // only first address should have the // document and sheet specifications |