diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-09-06 10:55:16 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-06 14:12:27 +0200 |
commit | 77902a3cb2ab3af542e62253cc9f4dc12e099293 (patch) | |
tree | f2270b9d8da54ae53b9c99da6d82ecd7c755f837 /oox | |
parent | 9b021e87e04f4ab294d8cefb5d54bfe29e1e85dd (diff) |
Fixing '....'
Change-Id: Icf2a34500acc18b28f113c85366bf24edc6d20b9
Reviewed-on: https://gerrit.libreoffice.org/78695
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/ole/axbinarywriter.cxx | 2 | ||||
-rw-r--r-- | oox/source/ppt/animationspersist.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/ole/axbinarywriter.cxx b/oox/source/ole/axbinarywriter.cxx index 400e6fbde551..85b3621b2733 100644 --- a/oox/source/ole/axbinarywriter.cxx +++ b/oox/source/ole/axbinarywriter.cxx @@ -73,7 +73,7 @@ void AxAlignedOutputStream::pad( sal_Int32 nBytes ) css::uno::Sequence< sal_Int8 > aData( nBytes ); // ok we could be padding with rubbish here, but really that shouldn't matter // set to 0(s), easier to not get fooled by 0's when looking at - // binary content...... + // binary content... memset( static_cast<void*>( aData.getArray() ), 0, nBytes ); mpOutStrm->writeData( aData ); mnStrmPos = mpOutStrm->tell() - mnWrappedBeginPos; diff --git a/oox/source/ppt/animationspersist.cxx b/oox/source/ppt/animationspersist.cxx index 3546c047c835..c9215a90980e 100644 --- a/oox/source/ppt/animationspersist.cxx +++ b/oox/source/ppt/animationspersist.cxx @@ -101,7 +101,7 @@ namespace oox { namespace ppt { switch(mnRangeType) { case XML_charRg: - // TODO calculate the corresponding paragraph for the text range.... + // TODO calculate the corresponding paragraph for the text range... SAL_INFO("oox.ppt", "OOX: TODO calculate the corresponding paragraph for the text range..." ); break; case XML_pRg: |