summaryrefslogtreecommitdiffstats
path: root/svtools
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-10-04 12:34:30 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-10-04 15:05:04 +0200
commitbe62c01287c095c22a83ecfe6f9f45874f6e56f8 (patch)
treeee40a7558322b4627a564f69dfb92e4c8401bea0 /svtools
parentremove unused method (diff)
downloadcore-be62c01287c095c22a83ecfe6f9f45874f6e56f8.tar.gz
core-be62c01287c095c22a83ecfe6f9f45874f6e56f8.zip
fdo#39674 fix some spelling
Change-Id: I72e497fb97edf8782c69000576f42896594e1556
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/misc/unitconv.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/misc/unitconv.cxx b/svtools/source/misc/unitconv.cxx
index 305bf08c901c..1694ab9ac752 100644
--- a/svtools/source/misc/unitconv.cxx
+++ b/svtools/source/misc/unitconv.cxx
@@ -279,7 +279,7 @@ FieldUnit MapToFieldUnit( const SfxMapUnit eUnit )
// -----------------------------------------------------------------------
-long CalcToPoint( long nIn, SfxMapUnit eUnit, sal_uInt16 nFaktor )
+long CalcToPoint( long nIn, SfxMapUnit eUnit, sal_uInt16 nFactor )
{
DBG_ASSERT( eUnit == SFX_MAPUNIT_TWIP ||
eUnit == SFX_MAPUNIT_100TH_MM ||
@@ -313,7 +313,7 @@ long CalcToPoint( long nIn, SfxMapUnit eUnit, sal_uInt16 nFaktor )
nRet += 10 - nTmp;
nRet /= 10;
}
- return nRet * nFaktor / 20;
+ return nRet * nFactor / 20;
}
// -----------------------------------------------------------------------