summaryrefslogtreecommitdiff
path: root/scaddins
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-07-30 15:14:00 +0000
committerKurt Zenker <kz@openoffice.org>2004-07-30 15:14:00 +0000
commit4e8d9deb0a42552bc0dbffd1824c0f10c0b82135 (patch)
tree4ed4b72acb26e55b97f230c394d014637a5205ff /scaddins
parent5875a758da2d85eb5384e212c171c554fcd7df93 (diff)
INTEGRATION: CWS dr19 (1.35.16); FILE MERGED
2004/07/05 08:41:46 dr 1.35.16.2: RESYNC: (1.35-1.37); FILE MERGED 2004/06/03 18:39:39 dr 1.35.16.1: #i25883# complex functions, thanks to Michael Meeks
Diffstat (limited to 'scaddins')
-rw-r--r--scaddins/source/analysis/analysis.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/scaddins/source/analysis/analysis.cxx b/scaddins/source/analysis/analysis.cxx
index 3a685136bbbd..90b87878f7a2 100644
--- a/scaddins/source/analysis/analysis.cxx
+++ b/scaddins/source/analysis/analysis.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: analysis.cxx,v $
*
- * $Revision: 1.37 $
+ * $Revision: 1.38 $
*
- * last change: $Author: hjs $ $Date: 2004-06-28 17:28:06 $
+ * last change: $Author: kz $ $Date: 2004-07-30 16:14:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1327,7 +1327,7 @@ STRING SAL_CALL AnalysisAddIn::getComplex( double fR, double fI, const ANY& rSuf
THROW_IAE;
}
- return Complex( fR,fI ).GetString( bi );
+ return Complex( fR, fI, bi ? 'i' : 'j' ).GetString();
}