summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-01-23 10:48:00 +0000
committerOliver Bolte <obo@openoffice.org>2007-01-23 10:48:00 +0000
commit62edea2aefb0d4853ccc2286e6926636bf7bef2d (patch)
treead5bfe8a603a87d7b50ecb7bb08cbda6ebc0b192 /unotools
parent28b1d87d5652ce6e77fc6f89bd690f1256d307e5 (diff)
INTEGRATION: CWS mfdouble (1.28.36); FILE MERGED
2006/12/13 14:39:19 pl 1.28.36.1: #i71046# allow for 64bit integers on 32bit platforms
Diffstat (limited to 'unotools')
-rw-r--r--unotools/inc/unotools/localedatawrapper.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/unotools/inc/unotools/localedatawrapper.hxx b/unotools/inc/unotools/localedatawrapper.hxx
index 5d21b0b29ef2..8e02488a4f95 100644
--- a/unotools/inc/unotools/localedatawrapper.hxx
+++ b/unotools/inc/unotools/localedatawrapper.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: localedatawrapper.hxx,v $
*
- * $Revision: 1.28 $
+ * $Revision: 1.29 $
*
- * last change: $Author: hr $ $Date: 2006-04-21 10:59:09 $
+ * last change: $Author: obo $ $Date: 2007-01-23 11:48:00 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -136,7 +136,7 @@ class UNOTOOLS_DLLPUBLIC LocaleDataWrapper
void getDefaultCalendarImpl();
sal_Unicode* ImplAddFormatNum( sal_Unicode* pBuf,
- long nNumber, USHORT nDecimals,
+ sal_Int64 nNumber, USHORT nDecimals,
BOOL bUseThousandSep, BOOL bTrailingZeros ) const;
public:
@@ -292,18 +292,18 @@ public:
</FALSE> := trailing zeros are only displayed
if the value is not an integer value.
*/
- String getNum( long nNumber, USHORT nDecimals,
+ String getNum( sal_Int64 nNumber, USHORT nDecimals,
BOOL bUseThousandSep = TRUE,
BOOL bTrailingZeros = TRUE ) const;
/// "Secure" currency formatted string.
- String getCurr( long nNumber, USHORT nDecimals,
+ String getCurr( sal_Int64 nNumber, USHORT nDecimals,
const String& rCurrencySymbol,
BOOL bUseThousandSep = TRUE ) const;
/** Default currency formatted string, use with
care as default currency may change in any
locale, for example, DEM -> EUR */
- String getCurr( long nNumber, USHORT nDecimals,
+ String getCurr( sal_Int64 nNumber, USHORT nDecimals,
BOOL bUseThousandSep = TRUE ) const
{ return getCurr( nNumber, nDecimals,
getCurrSymbol(), bUseThousandSep ); }