diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-21 14:51:11 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-21 14:51:11 +0100 |
commit | 44b2fb6d0ba8c3fc8aa6edb4e539c484e21b7fc5 (patch) | |
tree | 826e9b6da40eea22cca5c2633a6916760872e98a /sw | |
parent | ed8110e101db5a8ea4dde43a3ec38fe40e6fe7e2 (diff) |
RotateAngle of UNO type long
Change-Id: Id3aec16d17b55366c2a35810b21b0a1c73439741
Diffstat (limited to 'sw')
-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 c1b0d95475ad..52028993f9b3 100644 --- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx +++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx @@ -2588,7 +2588,7 @@ DECLARE_OOXMLIMPORT_TEST(testFdo87488, "fdo87488.docx") { uno::Reference<beans::XPropertySet> props(group->getByIndex(0), uno::UNO_QUERY); CPPUNIT_ASSERT_EQUAL(props->getPropertyValue("RotateAngle"), - uno::makeAny(270 * 100)); + uno::makeAny<sal_Int32>(270 * 100)); comphelper::SequenceAsHashMap geom(props->getPropertyValue("CustomShapeGeometry")); CPPUNIT_ASSERT_EQUAL(sal_Int32(90), geom["TextPreRotateAngle"].get<sal_Int32>()); } |