diff options
author | Andras Timar <andras.timar@collabora.com> | 2013-12-20 11:25:37 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2013-12-20 15:55:00 +0100 |
commit | b55259eeb549482477c57d854f3de72aff345edb (patch) | |
tree | 35e474b8458ae776a8455f4f78e73ae28c611180 /embedserv | |
parent | 377ec698afc98a9a098b456f4ae3c694498df6a2 (diff) |
typo fixes
Change-Id: Ia5f104bfd707bcf4e159c78ca2764c861fb0b6d9
Diffstat (limited to 'embedserv')
-rw-r--r-- | embedserv/source/embed/docholder.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embedserv/source/embed/docholder.cxx b/embedserv/source/embed/docholder.cxx index 2a443ac77e95..f09a0b5cf7a4 100644 --- a/embedserv/source/embed/docholder.cxx +++ b/embedserv/source/embed/docholder.cxx @@ -1106,7 +1106,7 @@ HRESULT DocumentHolder::SetExtent( const SIZEL *pSize ) // TODO/LATER: in future UNO API should be used for the conversion, currently there is no if ( aMapMode == embed::EmbedMapUnits::TWIP ) { - // convertion from ONE_100TH_MM + // conversion from ONE_100TH_MM aNewSize.Width = aNewSize.Width * 144 / 254; aNewSize.Height = aNewSize.Height * 144 / 254; } @@ -1140,7 +1140,7 @@ HRESULT DocumentHolder::GetExtent( SIZEL *pSize ) // TODO/LATER: in future UNO API should be used for the conversion, currently there is no if ( aMapMode == embed::EmbedMapUnits::TWIP ) { - // convertion to ONE_100TH_MM + // conversion to ONE_100TH_MM aDocSize.Width = aDocSize.Width * 254 / 144; aDocSize.Height = aDocSize.Height * 254 / 144; } |