diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-03-21 16:39:15 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-03-21 16:39:40 +0100 |
commit | 5881168bf8187149e2caf59e72e1ac2d739aa3a4 (patch) | |
tree | 852b7bda27806f98e95697da61007a5afa1de225 /oox | |
parent | ba8a429a2e062879d1d6641e22838928da1d8573 (diff) |
oox: it's EMU, not MEU
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/vml/vmlformatting.cxx | 2 |
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; |