diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-06-14 13:23:42 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-06-14 13:25:06 +0300 |
commit | dc2d434687f701884f7c11e130669f63fb606074 (patch) | |
tree | cbf816e2831e8edfe2b3e67c4fc7f24277363d19 /vcl/aqua/source | |
parent | f31d4ad929339b4a06d5f84b14a2198345d88757 (diff) |
s/rtl_copyMemory/memmove
Change-Id: Iead9b7ee98a11ad5a9916d6e176c8938378b817a
Diffstat (limited to 'vcl/aqua/source')
-rw-r--r-- | vcl/aqua/source/dtrans/PictToBmpFlt.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/aqua/source/dtrans/PictToBmpFlt.cxx b/vcl/aqua/source/dtrans/PictToBmpFlt.cxx index 61cb721bed2c..3d5c3a73c0c8 100644 --- a/vcl/aqua/source/dtrans/PictToBmpFlt.cxx +++ b/vcl/aqua/source/dtrans/PictToBmpFlt.cxx @@ -63,7 +63,7 @@ bool PICTtoPNG( com::sun::star::uno::Sequence<sal_Int8>& rPictData, rPngData.realloc( nPngSize); HLock( hPng); - rtl_copyMemory( rPngData.getArray(), ((sal_Int8*)*hPng), nPngSize); + memmove( rPngData.getArray(), ((sal_Int8*)*hPng), nPngSize); HUnlock( hPng); } @@ -120,7 +120,7 @@ bool PNGtoPICT( com::sun::star::uno::Sequence<sal_Int8>& rPngData, rPictData.realloc( nPictSize); HLock( (Handle)hPict); - rtl_copyMemory( rPictData.getArray(), ((sal_Int8*)*hPict), nPictSize); + memmove( rPictData.getArray(), ((sal_Int8*)*hPict), nPictSize); HUnlock( (Handle)hPict); // Release the data associated with the picture |