diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-08-23 22:49:56 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-08-29 16:57:01 +0200 |
commit | 986a172a749288d5ee09eb548ff4b4a7153023fe (patch) | |
tree | 0a50f96130cafa6816d669246e951839d12eba19 /sw/qa | |
parent | 9db0626cc365d752241632f0a5c44d3835f9330b (diff) |
sal_uLong to sal_uInt32 for CRC32
Change-Id: Id13e07f479615b8eb39d05e6534f514277cc3d03
Diffstat (limited to 'sw/qa')
-rw-r--r-- | sw/qa/extras/ooxmlimport/ooxmlimport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx index 4108c493ac96..576beaea4a0d 100644 --- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx +++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx @@ -750,7 +750,7 @@ DECLARE_OOXMLIMPORT_TEST(testN777345, "n777345.docx") Graphic aGraphic(xGraphic); // If this changes later, feel free to update it, but make sure it's not // the checksum of a white/transparent placeholder rectangle. - CPPUNIT_ASSERT_EQUAL(sal_uLong(2529763117U), aGraphic.GetChecksum()); + CPPUNIT_ASSERT_EQUAL(static_cast<sal_uInt32>(2529763117UL), aGraphic.GetChecksum()); #endif } |