summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2015-08-29 14:30:56 +0200
committerMarco Cecchetti <marco.cecchetti@collabora.com>2015-09-01 17:15:58 +0200
commite3f9930db65e3d388b9fae55ae85a507688dd6bb (patch)
tree7df9477d8d6736b044c7b41fdb422df39c09c242
parent9b31c9494e4fa41f9b302c5db3d8ebf07ec9b7c0 (diff)
switch to 64-bit checksum: fixed a missed substitution
Change-Id: I733240798a8415602b824a9732193c344fe53a5c
-rw-r--r--svtools/source/graphic/grfcache.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/graphic/grfcache.cxx b/svtools/source/graphic/grfcache.cxx
index 25ae4f452851..6c099107233a 100644
--- a/svtools/source/graphic/grfcache.cxx
+++ b/svtools/source/graphic/grfcache.cxx
@@ -79,7 +79,7 @@ GraphicID::GraphicID( const GraphicObject& rObj )
mnID1 |= rSvgDataPtr->getSvgDataArrayLength();
mnID2 = basegfx::fround(rRange.getWidth());
mnID3 = basegfx::fround(rRange.getHeight());
- mnID4 = rtl_crc32(0, rSvgDataPtr->getSvgDataArray().get(), rSvgDataPtr->getSvgDataArrayLength());
+ mnID4 = vcl_get_checksum(0, rSvgDataPtr->getSvgDataArray().get(), rSvgDataPtr->getSvgDataArrayLength());
}
else if( rGraphic.IsAnimated() )
{