summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Yin <steve_y@apache.org>2014-01-14 08:03:55 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-14 09:33:09 +0000
commit0bec1401680bce1b2aaaa3e941b083d3427d481b (patch)
tree391de38abff5250b9d310fdd16074f716c62b791
parent92ba7bd75b584ae85380b9c07863db36b74cab53 (diff)
Resolves: #i119844# Spin effect amount property lost when saving pptx to odp
(cherry picked from commit a7eedd28dd66cec1a668c3df6a8568dcad0f858f) Change-Id: Ia2b46f4b35fc90723570b7f8bfb82c101279eb9d
-rw-r--r--oox/source/ppt/timenodelistcontext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/ppt/timenodelistcontext.cxx b/oox/source/ppt/timenodelistcontext.cxx
index ca7f1cde248b..3c798f2fa526 100644
--- a/oox/source/ppt/timenodelistcontext.cxx
+++ b/oox/source/ppt/timenodelistcontext.cxx
@@ -718,7 +718,7 @@ namespace oox { namespace ppt {
if(attribs.hasAttribute( XML_by ) )
{
sal_Int32 nBy = attribs.getInteger( XML_by, 0 );
- pNode->setBy( makeAny( nBy ) );
+ pNode->setBy( makeAny( (double)nBy ) );
}
if(attribs.hasAttribute( XML_from ) )
{