diff options
author | Juan Picca <jumapico@gmail.com> | 2015-01-31 21:24:42 -0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-02-02 11:50:39 +0000 |
commit | c32aa53a7df7af4ef23b8d235483eabb51463183 (patch) | |
tree | 80b1cd27e68d83b559703fc9190c08e1728c4f75 /include/oox | |
parent | e76bc369b8ee58094f45a2f5451cf9374163e979 (diff) |
fdo#88826: replace MM100toEMU() by convertHmmToEmu()
Change-Id: I9ca79dfa0c214e3f58b7f45a78ad0877d4c7d10a
Reviewed-on: https://gerrit.libreoffice.org/14266
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/export/utils.hxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/oox/export/utils.hxx b/include/oox/export/utils.hxx index 2c4fcec3b480..417e552fff30 100644 --- a/include/oox/export/utils.hxx +++ b/include/oox/export/utils.hxx @@ -39,11 +39,6 @@ static inline sal_Int64 PPTtoEMU( sal_Int32 nPPT ) return (sal_Int64)( (double)nPPT * 1587.5 ); } -static inline sal_Int64 MM100toEMU( sal_Int32 nMM100 ) -{ - return (sal_Int64)nMM100 * 360; -} - static inline sal_Int64 TwipsToEMU( sal_Int32 nTwips ) { return sal_Int64( nTwips ) * 635; |