summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/animationimport.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-26 08:43:00 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-26 10:47:02 +0000
commit80735fcbb0503ff1de198d1d9936fed9f5ae77a2 (patch)
tree7c126266aecb7561f46897bd9c997c085a3a96df /xmloff/source/draw/animationimport.cxx
parent4112ecadd53f7ae48e007dd5024f077aca305062 (diff)
com::sun::star->css in xmloff/
Change-Id: Iee6e21e093fb1383f19a0716dbc1c341f446b8c2 Reviewed-on: https://gerrit.libreoffice.org/20192 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmloff/source/draw/animationimport.cxx')
-rw-r--r--xmloff/source/draw/animationimport.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/draw/animationimport.cxx b/xmloff/source/draw/animationimport.cxx
index f7c5e72c2739..a5951129936d 100644
--- a/xmloff/source/draw/animationimport.cxx
+++ b/xmloff/source/draw/animationimport.cxx
@@ -624,7 +624,7 @@ Any AnimationsImportHelperImpl::convertPath( const OUString& rValue )
AnimationNodeContext::AnimationNodeContext(
const Reference< XAnimationNode >& xParentNode,
SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName,
- const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList,
+ const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList,
AnimationsImportHelperImpl* pHelper /* = NULL */ )
: SvXMLImportContext(rImport, nPrfx, rLocalName),
mpHelper( pHelper ),
@@ -726,7 +726,7 @@ AnimationNodeContext::~AnimationNodeContext()
delete mpHelper;
}
-void AnimationNodeContext::StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& )
+void AnimationNodeContext::StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& )
{
// code of StartElement is moved to init_node that is now called
// in c'tor before appending this node to its parent.
@@ -734,7 +734,7 @@ void AnimationNodeContext::StartElement( const ::com::sun::star::uno::Reference<
// set when child nodes are appended.
}
-void AnimationNodeContext::init_node( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList )
+void AnimationNodeContext::init_node( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList )
{
if( mxNode.is() ) try
{
@@ -1152,7 +1152,7 @@ void AnimationNodeContext::init_node( const ::com::sun::star::uno::Reference< :
double fInterval = 0.0;
if( rValue.match("P") )
{
- ::com::sun::star::util::Duration aDuration;
+ css::util::Duration aDuration;
if (::sax::Converter::convertDuration(aDuration, rValue))
{
fInterval = ((((aDuration.Hours * 60)
@@ -1240,7 +1240,7 @@ void AnimationNodeContext::init_node( const ::com::sun::star::uno::Reference< :
}
SvXMLImportContext * AnimationNodeContext::CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName,
- const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList>& xAttrList )
+ const css::uno::Reference< css::xml::sax::XAttributeList>& xAttrList )
{
if( mxNode.is())
return new AnimationNodeContext( mxNode, GetImport(), nPrefix, rLocalName, xAttrList, mpHelper );