summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--filter/source/graphicfilter/icgm/class1.cxx2
-rw-r--r--filter/source/graphicfilter/icgm/class3.cxx2
-rw-r--r--svl/source/numbers/zformat.cxx2
-rw-r--r--tools/source/generic/poly.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/graphicfilter/icgm/class1.cxx b/filter/source/graphicfilter/icgm/class1.cxx
index a828c919695b..22a65bf11f05 100644
--- a/filter/source/graphicfilter/icgm/class1.cxx
+++ b/filter/source/graphicfilter/icgm/class1.cxx
@@ -60,7 +60,7 @@ void CGM::ImplDoClass1()
{
nUInteger = ImplGetUI16();
nI0 = ImplGetI( pElement->nIntegerPrecision ); // exponent
- nI1 = ImplGetI( pElement->nIntegerPrecision ); // mantisse
+ nI1 = ImplGetI( pElement->nIntegerPrecision ); // mantissa
switch( nUInteger )
{
case 0 :
diff --git a/filter/source/graphicfilter/icgm/class3.cxx b/filter/source/graphicfilter/icgm/class3.cxx
index eb8312d1ad45..1ccc038d3c56 100644
--- a/filter/source/graphicfilter/icgm/class3.cxx
+++ b/filter/source/graphicfilter/icgm/class3.cxx
@@ -41,7 +41,7 @@ void CGM::ImplDoClass3()
{
nUInteger = ImplGetUI16();
const long nI0 = ImplGetI( pElement->nIntegerPrecision ); // exponent
- const long nI1 = ImplGetI( pElement->nIntegerPrecision ); // mantisse
+ const long nI1 = ImplGetI( pElement->nIntegerPrecision ); // mantissa
switch( nUInteger )
{
case 0 :
diff --git a/svl/source/numbers/zformat.cxx b/svl/source/numbers/zformat.cxx
index 0ba7c9b02f73..330502a891b8 100644
--- a/svl/source/numbers/zformat.cxx
+++ b/svl/source/numbers/zformat.cxx
@@ -2629,7 +2629,7 @@ bool SvNumberformat::ImpGetScientificOutput(double fNumber,
if ( nExPos >= 0 )
{
- // split into mantisse and exponent and get rid of "E+" or "E-"
+ // split into mantissa and exponent and get rid of "E+" or "E-"
sal_Int32 nExpStart = nExPos + 1;
switch ( sStr[ nExpStart ] )
diff --git a/tools/source/generic/poly.cxx b/tools/source/generic/poly.cxx
index 7c9ece60693b..fba7a80bd23d 100644
--- a/tools/source/generic/poly.cxx
+++ b/tools/source/generic/poly.cxx
@@ -1730,7 +1730,7 @@ static void impCorrectContinuity(basegfx::B2DPolygon& roPolygon, sal_uInt32 nInd
// it needs to be corrected to be able to detect the continuity in this points
// correctly.
- // We only have the integer data here (already in double precision form, but no mantisse
+ // We only have the integer data here (already in double precision form, but no mantissa
// used), so the best correction is to use:
// for C1: The longest vector since it potentially has best preserved the original vector.