summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Joachim Lankenau <hjs@openoffice.org>2003-08-18 14:14:05 +0000
committerHans-Joachim Lankenau <hjs@openoffice.org>2003-08-18 14:14:05 +0000
commit19bb3c13f6dc5fd9cdd1d32b6c71921dabd734a0 (patch)
treef0c983c4a9cd1eed213f01f1d1579e7c31ced0af
parent2eead197b8bf6ace07410fc66ecd541aad7c3e6e (diff)
INTEGRATION: CWS geordi2q01 (1.55.20); FILE MERGED
2003/08/18 13:37:53 hr 1.55.20.1: #i18350#: join changes from CWS ooo11rc3
-rw-r--r--vcl/source/gdi/pdfwriter_impl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx
index f462df8c9bc6..ad3e2cb4e12b 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pdfwriter_impl.cxx,v $
*
- * $Revision: 1.55 $
+ * $Revision: 1.56 $
*
- * last change: $Author: vg $ $Date: 2003-07-21 11:21:49 $
+ * last change: $Author: hjs $ $Date: 2003-08-18 15:14:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -203,7 +203,7 @@ static void appendDouble( double fValue, OStringBuffer& rBuffer, int nPrecision
{
int i;
rBuffer.append( '.' );
- sal_Int64 nBound = (sal_Int64)(pow( 10, nPrecision - 1 )+0.5);
+ sal_Int64 nBound = (sal_Int64)(pow( 10.0, nPrecision - 1.0 )+0.5);
for ( i = 0; ( i < nPrecision ) && nFrac; i++ )
{
sal_Int64 nNumb = nFrac / nBound;