summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
Diffstat (limited to 'svl')
-rw-r--r--svl/source/numbers/zformat.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/numbers/zformat.cxx b/svl/source/numbers/zformat.cxx
index c7d6954995d6..daa9791dba3c 100644
--- a/svl/source/numbers/zformat.cxx
+++ b/svl/source/numbers/zformat.cxx
@@ -1969,7 +1969,7 @@ OUString SvNumberformat::StripNewCurrencyDelimiters( const OUString& rStr )
sal_Int32 nEnd;
if ( (nEnd = GetQuoteEnd( rStr, nPos )) >= 0 )
{
- aTmp.append(rStr, nStartPos, ++nEnd - nStartPos );
+ aTmp.append(rStr.copy( nStartPos, ++nEnd - nStartPos ));
nStartPos = nEnd;
}
else
r> 2020-01-10use more std::make_sharedNoel Grandin 2019-12-30Merge ImplementationInfo back into ImplementationStephan Bergmann 2019-12-24ImplementationInfo can be inlinedNoel Grandin 2019-12-18sal_Char->char in cppcanvas..cuiNoel Grandin 2019-12-05Fix typoAndrea Gelmini 2019-12-05android: Avoid throwing exceptions through the bridges.Jan Holesovsky 2019-12-03remove some useless comment linesNoel Grandin 2019-11-22Extend loplugin:external to warn about classesStephan Bergmann 2019-11-21preload: cleanup failed module load warnings and rename them.Michael Meeks 2019-10-18make bin/update_pch.s always include code in trivial #if'sLuboš Luňák 2019-10-14loplugin:stringadd look for unnecessary temporariesNoel Grandin 2019-09-26add property name when throwing css::uno::UnknownPropertyExceptionNoel Grandin 2019-09-23do not require $(SRCDIR) in every gb_Library_set_precompiled_headerLuboš Luňák 2019-09-19improve and enable loplugin:fragiledestructorNoel Grandin 2019-08-27loplugin:referencecasting find more redundant static_castNoel Grandin 2019-08-19loplugin:constvars in cppuhelper..desktopNoel Grandin 2019-08-17tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctorJulien Nabet 2019-08-12Optimize cppu::supportsService to use const methods of SequenceMike Kaganski 2019-07-31Improved loplugin:stringconstant (now that GCC 7 supports it): cppuhelperStephan Bergmann 2019-07-29loplugin:sequentialassignNoel Grandin 2019-07-19loplugin:referencecasting in cppcanvas..cuiNoel Grandin 2019-07-18Resort pProperties when really needed (cppuhelper)Julien Nabet