summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-12-06 18:48:15 +0100
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-12-06 20:40:54 +0000
commiteafb82821386e4c14f4a072e4b541dc60f4d7af2 (patch)
treec555c7f73935213c8813b106c1e49388365a9459 /svl
parentcf543d8a78170f4fa3c2ca340f21e61d913a90eb (diff)
OUStringBuffer::remove( int ) -> truncate( int )
Although this may seem consistent with remove( int, int ), it is in fact rather misleading API. The biggest offender is most probably buffer.remove( 'a' ) , which definitely does not do what it suggests to do. Change-Id: I287619cd4b953228b93fa68fb381d66c344c3865 Reviewed-on: https://gerrit.libreoffice.org/1256 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'svl')
-rw-r--r--svl/source/numbers/zformat.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svl/source/numbers/zformat.cxx b/svl/source/numbers/zformat.cxx
index 1d86c92cc9ef..3f4726513fed 100644
--- a/svl/source/numbers/zformat.cxx
+++ b/svl/source/numbers/zformat.cxx
@@ -2625,7 +2625,7 @@ bool SvNumberformat::ImpGetScientificOutput(double fNumber,
break;
}
ExpStr = sStr.toString().copy( nExpStart ); // part following the "E+"
- sStr.remove( nExPos );
+ sStr.truncate( nExPos );
// cut any decimal delimiter
sal_Int32 index = 0;
@@ -2692,7 +2692,7 @@ bool SvNumberformat::ImpGetScientificOutput(double fNumber,
// weiter Hauptzahl:
if ( !bCont )
{
- sStr.remove();
+ sStr.truncate();
}
else
{
@@ -2739,7 +2739,7 @@ bool SvNumberformat::ImpGetFractionOutput(double fNumber,
if (rInfo.nCntExp == 0)
{
SAL_WARN( "svl.numbers", "SvNumberformat:: Bruch, nCntExp == 0");
- sBuff.remove();
+ sBuff.truncate();
return false;
}
@@ -2944,7 +2944,7 @@ bool SvNumberformat::ImpGetFractionOutput(double fNumber,
}
if (rInfo.nCntPre > 0 && nFrac == 0)
{
- sDiv.remove();
+ sDiv.truncate();
}
else
{
@@ -2980,7 +2980,7 @@ bool SvNumberformat::ImpGetFractionOutput(double fNumber,
// weiter Zaehler:
if ( !bCont )
{
- sFrac.remove();
+ sFrac.truncate();
}
else
{
@@ -3001,7 +3001,7 @@ bool SvNumberformat::ImpGetFractionOutput(double fNumber,
// weiter Hauptzahl
if ( !bCont )
{
- sStr.remove();
+ sStr.truncate();
}
else
{
@@ -4376,7 +4376,7 @@ bool SvNumberformat::ImpGetNumberOutput(double fNumber,
sal_Int32 nLen = rDecSep.getLength();
if ( sStr.getLength() > nLen && ( sStr.indexOf( rDecSep, sStr.getLength() - nLen) == sStr.getLength() - nLen) )
{
- sStr.remove( sStr.getLength() - nLen ); // no decimals => strip DecSep
+ sStr.truncate( sStr.getLength() - nLen ); // no decimals => strip DecSep
}
}
if (bSign)