summaryrefslogtreecommitdiff
path: root/svl/inc
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-11-24 13:22:56 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-11-27 22:59:28 -0600
commitee8f9c9426b10f9b69adb1bae9b82602627d239e (patch)
treec95dad4d2585ba2d6fcedf55e995c1659b52f63e /svl/inc
parent3f76691ac67cd358879465239abfcf8bb1732419 (diff)
migrating SvNumberformat::GetOutputString implementation to OUStringBuffer
Change-Id: Ib6c6d1a31b037b6e687b063257a9dc813ff3be91
Diffstat (limited to 'svl/inc')
-rw-r--r--svl/inc/svl/zformat.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/svl/inc/svl/zformat.hxx b/svl/inc/svl/zformat.hxx
index d947bc943ec2..7c3dcbde8172 100644
--- a/svl/inc/svl/zformat.hxx
+++ b/svl/inc/svl/zformat.hxx
@@ -575,7 +575,7 @@ private:
SVL_DLLPRIVATE void ImpGetOutputStandard( double& fNumber, OUStringBuffer& OutString );
SVL_DLLPRIVATE void ImpGetOutputStdToPrecision( double& rNumber, OUString& rOutString, sal_uInt16 nPrecision ) const;
// numbers in input line
- SVL_DLLPRIVATE void ImpGetOutputInputLine( double fNumber, String& OutString );
+ SVL_DLLPRIVATE void ImpGetOutputInputLine( double fNumber, OUString& OutString );
// check subcondition
// OP undefined => -1
@@ -617,20 +617,20 @@ private:
SVL_DLLPRIVATE bool ImpGetFractionOutput(double fNumber,
sal_uInt16 nIx,
- String& OutString);
+ OUStringBuffer& OutString);
SVL_DLLPRIVATE bool ImpGetScientificOutput(double fNumber,
sal_uInt16 nIx,
- String& OutString);
+ OUStringBuffer& OutString);
SVL_DLLPRIVATE bool ImpGetDateOutput( double fNumber,
- sal_uInt16 nIx,
- String& OutString );
+ sal_uInt16 nIx,
+ OUStringBuffer& OutString );
SVL_DLLPRIVATE bool ImpGetTimeOutput( double fNumber,
- sal_uInt16 nIx,
- String& OutString );
+ sal_uInt16 nIx,
+ OUStringBuffer& OutString );
SVL_DLLPRIVATE bool ImpGetDateTimeOutput( double fNumber,
- sal_uInt16 nIx,
- String& OutString );
+ sal_uInt16 nIx,
+ OUStringBuffer& OutString );
// Switches to the "gregorian" calendar if the current calendar is
// non-"gregorian" and the era is a "Dummy" era of a calendar which doesn't
@@ -646,8 +646,8 @@ private:
sal_Int16 nNatNum );
SVL_DLLPRIVATE bool ImpGetNumberOutput( double fNumber,
- sal_uInt16 nIx,
- String& OutString );
+ sal_uInt16 nIx,
+ OUStringBuffer& OutString );
SVL_DLLPRIVATE void ImpCopyNumberformat( const SvNumberformat& rFormat );