summaryrefslogtreecommitdiff
path: root/scaddins/source/analysis/analysishelper.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-09-25 11:47:04 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-09-25 11:47:04 +0000
commit7ef3e40f7aef4d5ac34607090a1a84fe6c1f423c (patch)
tree6ecbc69ad5c800aba8f91aa4ffc0f4e803608f8b /scaddins/source/analysis/analysishelper.cxx
parentc0e3a324a87000bdb5fd8a2092fe206911f1615a (diff)
INTEGRATION: CWS obo05 (1.52.10); FILE MERGED
2006/08/25 11:38:43 obo 1.52.10.1: #i53611# type casting
Diffstat (limited to 'scaddins/source/analysis/analysishelper.cxx')
-rw-r--r--scaddins/source/analysis/analysishelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/scaddins/source/analysis/analysishelper.cxx b/scaddins/source/analysis/analysishelper.cxx
index c50384d52..512f6da4a 100644
--- a/scaddins/source/analysis/analysishelper.cxx
+++ b/scaddins/source/analysis/analysishelper.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: analysishelper.cxx,v $
*
- * $Revision: 1.52 $
+ * $Revision: 1.53 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 23:11:26 $
+ * last change: $Author: vg $ $Date: 2006-09-25 12:47:04 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -994,7 +994,7 @@ double Erf( double x )
double fErf = 1.0;
if ( x < 1.0e-10 )
- fErf = x*1.1283791670955125738961589031215452L;
+ fErf = (double) (x*1.1283791670955125738961589031215452L);
else if ( x < 0.65 )
Erf0065( x, fErf );
else