summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-21 14:51:11 +0100
committerAndras Timar <andras.timar@collabora.com>2015-04-04 10:49:27 +0200
commit797984df3c857219a2568e1ecca1201533c21131 (patch)
tree2563e26c2c30431cd70f39ce73ece18277020f0e /sw
parent111766ae23510275ab64c2ee049bced62e967b3d (diff)
RotateAngle of UNO type long
Change-Id: Id3aec16d17b55366c2a35810b21b0a1c73439741 (cherry picked from commit 44b2fb6d0ba8c3fc8aa6edb4e539c484e21b7fc5)
Diffstat (limited to 'sw')
-rw-r--r--sw/qa/extras/ooxmlimport/ooxmlimport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index c4bc13ab6fbf..a6ba627a2aae 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -2423,7 +2423,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>());
}