diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-08-08 02:29:03 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-08-08 02:29:24 +0200 |
commit | 932e37abca820479db439cd883859d0d5f4a3709 (patch) | |
tree | 58d62fc352805f6a228fee8f4f1beefc0862daa7 /test/source | |
parent | b3857330980232fe9869371007b20e35bfd05922 (diff) |
fix ambiguity in argument
Change-Id: I00146441b1271d7a3c866ad58d1b3c72b845dc0c
Diffstat (limited to 'test/source')
-rw-r--r-- | test/source/sheet/xstyleloader.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/source/sheet/xstyleloader.cxx b/test/source/sheet/xstyleloader.cxx index 77a5a69a0db1..41528b809002 100644 --- a/test/source/sheet/xstyleloader.cxx +++ b/test/source/sheet/xstyleloader.cxx @@ -57,7 +57,7 @@ void XStyleLoader::testLoadStylesFromURL() OUString aCellStyleName("CellBackColor"); uno::Any aBackColor = xPropSet->getPropertyValue(aCellStyleName); - uno::Any expectedBackColor(16724787); + uno::Any expectedBackColor(sal_Int32(16724787)); CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong CellBackColor" , expectedBackColor, aBackColor); @@ -89,7 +89,7 @@ void XStyleLoader::testLoadStylesFromDocument() OUString aCellStyleName("CellBackColor"); uno::Any aBackColor = xPropSet->getPropertyValue(aCellStyleName); - uno::Any expectedBackColor(16724787); + uno::Any expectedBackColor(sal_Int32(16724787)); CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong CellBackColor" , expectedBackColor, aBackColor); @@ -97,4 +97,4 @@ void XStyleLoader::testLoadStylesFromDocument() } -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |