summaryrefslogtreecommitdiffstats
path: root/oox
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2012-03-21 16:39:15 +0100
committerMiklos Vajna <vmiklos@suse.cz>2012-03-21 16:39:40 +0100
commit5881168bf8187149e2caf59e72e1ac2d739aa3a4 (patch)
tree852b7bda27806f98e95697da61007a5afa1de225 /oox
parentClarify example (diff)
downloadcore-5881168bf8187149e2caf59e72e1ac2d739aa3a4.tar.gz
core-5881168bf8187149e2caf59e72e1ac2d739aa3a4.zip
oox: it's EMU, not MEU
Diffstat (limited to 'oox')
-rw-r--r--oox/source/vml/vmlformatting.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/vml/vmlformatting.cxx b/oox/source/vml/vmlformatting.cxx
index 11978299c163..1d5a9588f44f 100644
--- a/oox/source/vml/vmlformatting.cxx
+++ b/oox/source/vml/vmlformatting.cxx
@@ -150,7 +150,7 @@ bool lclExtractDouble( double& orfValue, sal_Int32& ornEndPos, const OUString& r
fValue *= 360000.0;
else if( (cChar1 == 'm') && (cChar2 == 'm') ) // 1 mm = 36,000 EMU
fValue *= 36000.0;
- else if( (cChar1 == 'p') && (cChar2 == 't') ) // 1 point = 1/72 inch = 12,700 MEU
+ else if( (cChar1 == 'p') && (cChar2 == 't') ) // 1 point = 1/72 inch = 12,700 EMU
fValue *= 12700.0;
else if( (cChar1 == 'p') && (cChar2 == 'c') ) // 1 pica = 1/6 inch = 152,400 EMU
fValue *= 152400.0;