summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2015-08-29 14:30:56 +0200
committerMichael Meeks <michael.meeks@collabora.com>2015-09-01 16:28:49 +0100
commit2d860a8cef3ee887ac5cad1bc67b0f820a63b78d (patch)
tree7df9477d8d6736b044c7b41fdb422df39c09c242 /svtools
parentc8a46ee5199f42f1f888d5bee765da83a608918f (diff)
switch to 64-bit checksum: fixed a missed substitution
Change-Id: I733240798a8415602b824a9732193c344fe53a5c
Diffstat (limited to 'svtools')
-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() )
{