diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-31 15:45:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-01 06:22:09 +0000 |
commit | faf9b82d396686bdb8e5cf9200f48f2080d65d3b (patch) | |
tree | 21a1aa58416617ec407ab6989784ce02e3bb89a1 /animations/source | |
parent | cd2088f1395f84f61af47427bb6376db1765a2d6 (diff) |
makeAny->Any in accessibility..avmedia
Change-Id: I70f2dfa66d7b66738a840e4a7b5c7fb1b8d7b39f
Reviewed-on: https://gerrit.libreoffice.org/33756
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'animations/source')
-rw-r--r-- | animations/source/animcore/animcore.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx index 77a5d0d77374..bba30a6d6e52 100644 --- a/animations/source/animcore/animcore.cxx +++ b/animations/source/animcore/animcore.cxx @@ -73,7 +73,7 @@ using ::com::sun::star::uno::XComponentContext; using ::com::sun::star::uno::Exception; using ::com::sun::star::uno::XWeak; using ::com::sun::star::uno::Type; -using ::com::sun::star::uno::makeAny; +using ::com::sun::star::uno::Any; using ::com::sun::star::lang::NoSupportException; using ::com::sun::star::lang::IllegalArgumentException; using ::com::sun::star::lang::WrappedTargetException; @@ -388,7 +388,7 @@ Any SAL_CALL TimeContainerEnumeration::nextElement() if( maIter == maChildren.end() ) throw NoSuchElementException(); - return makeAny( (*maIter++) ); + return Any( *maIter++ ); } @@ -1972,7 +1972,7 @@ void AnimationNode::fireChangeListener() { Reference< XInterface > xSource( static_cast<OWeakObject*>(this), UNO_QUERY ); Sequence< ElementChange > aChanges; - const ChangesEvent aEvent( xSource, makeAny( mxParent.get() ), aChanges ); + const ChangesEvent aEvent( xSource, Any( mxParent.get() ), aChanges ); while( aIterator.hasMoreElements() ) { Reference< XChangesListener > xListener( aIterator.next(), UNO_QUERY ); |