summaryrefslogtreecommitdiff
path: root/scaddins
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-06-04 09:31:56 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-06-04 09:31:56 +0000
commit57a198415608a84016087932f4f5b5f68075244a (patch)
tree9ee8751a3364d09a4d9ff94a156fa590c02a4aca /scaddins
parent36636a52aefece7cabbba021f7c55ec83187fa30 (diff)
INTEGRATION: CWS dr4 (1.23.8); FILE MERGED
2003/06/02 10:18:18 dr 1.23.8.1: #i9134# fixed BESSEL J and I calculation
Diffstat (limited to 'scaddins')
-rw-r--r--scaddins/source/analysis/analysishelper.hxx13
1 files changed, 3 insertions, 10 deletions
diff --git a/scaddins/source/analysis/analysishelper.hxx b/scaddins/source/analysis/analysishelper.hxx
index da6a84746e73..1ce0387cdcb8 100644
--- a/scaddins/source/analysis/analysishelper.hxx
+++ b/scaddins/source/analysis/analysishelper.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: analysishelper.hxx,v $
*
- * $Revision: 1.23 $
+ * $Revision: 1.24 $
*
- * last change: $Author: hr $ $Date: 2003-04-28 15:14:40 $
+ * last change: $Author: vg $ $Date: 2003-06-04 10:31:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -151,13 +151,6 @@ double GetGcd( double f1, double f2 );
double GammaHelp( double& x, sal_Bool& bReflect );
double Gamma( double f );
double GammaN( double f, sal_uInt32 nIter );
-double Bessel( double fNum, sal_Int32 nOrder, sal_Bool bModfied ) THROWDEF_RTE_IAE;
-double Besselk0( double fNum );
-double Besselk1( double fNum );
-double Besselk( double fNum, sal_Int32 nOrder );
-double Bessely0( double fNum );
-double Bessely1( double fNum );
-double Bessely( double fNum, sal_Int32 nOrder );
double ConvertToDec( const STRING& rFromNum, sal_uInt16 nBaseFrom, sal_uInt16 nCharLim ) THROWDEF_RTE_IAE;
STRING ConvertFromDec(
sal_Int64 nNum, sal_Int64 nMin, sal_Int64 nMax, sal_uInt16 nBase,
@@ -703,7 +696,7 @@ inline sal_Int32 GetDiffDate360( constREFXPS& xOpt, sal_Int32 nDate1, sal_Int32
inline sal_Int16 GetDayOfWeek( sal_Int32 n )
{ // monday = 0, ..., sunday = 6
- return ( n - 1 ) % 7;
+ return static_cast< sal_Int16 >( ( n - 1 ) % 7 );
}