summaryrefslogtreecommitdiff
path: root/scaddins/source
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-01-29 14:12:24 +0000
committerRüdiger Timm <rt@openoffice.org>2008-01-29 14:12:24 +0000
commit005075bd47d6262dfe4f8172154abf3b0bdfce84 (patch)
treefd839a09fcc7277d5e72d65bcfd98044156047ed /scaddins/source
parentc293e2688c7d77f8546c95c8a650566de83be67a (diff)
INTEGRATION: CWS dr58_SRC680 (1.55.22); FILE MERGED
2007/12/10 12:25:06 dr 1.55.22.1: #i84395# loop in ERF/ERFC with argument 0.65
Diffstat (limited to 'scaddins/source')
-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 d90243843b5c..c8c123d3cddf 100644
--- a/scaddins/source/analysis/analysishelper.cxx
+++ b/scaddins/source/analysis/analysishelper.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: analysishelper.cxx,v $
*
- * $Revision: 1.55 $
+ * $Revision: 1.56 $
*
- * last change: $Author: rt $ $Date: 2007-07-03 15:39:28 $
+ * last change: $Author: rt $ $Date: 2008-01-29 15:12:24 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1028,7 +1028,7 @@ double Erfc( double x )
}
double fErfc = 0.0;
- if ( x > 0.65 )
+ if ( x >= 0.65 )
{
if ( x < 6.0 )
Erfc0600( x, fErfc );