diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-09-25 11:47:04 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-09-25 11:47:04 +0000 |
commit | 0a4bf9b8b0e6f901a313753820cdbc5519646e55 (patch) | |
tree | fa280d03bcae06ed64ed12adceec53ca6924e0c9 /scaddins | |
parent | 835a321c11fe3e1e907ab6fd2755f32f50742268 (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')
-rw-r--r-- | scaddins/source/analysis/analysishelper.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scaddins/source/analysis/analysishelper.cxx b/scaddins/source/analysis/analysishelper.cxx index 2ae7305b49c1..2ea259fc85f9 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 |