summaryrefslogtreecommitdiff
path: root/xmloff/source/core/unoatrcn.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/core/unoatrcn.cxx')
-rw-r--r--xmloff/source/core/unoatrcn.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/core/unoatrcn.cxx b/xmloff/source/core/unoatrcn.cxx
index ea8446278ccb..1fae778f1f90 100644
--- a/xmloff/source/core/unoatrcn.cxx
+++ b/xmloff/source/core/unoatrcn.cxx
@@ -158,7 +158,7 @@ sal_Bool SAL_CALL SvUnoAttributeContainer::hasByName(const OUString& aName) thro
void SAL_CALL SvUnoAttributeContainer::replaceByName(const OUString& aName, const uno::Any& aElement)
throw( lang::IllegalArgumentException, container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
{
- if( auto pData = o3tl::tryGet<xml::AttributeData>(aElement) )
+ if( auto pData = o3tl::tryAccess<xml::AttributeData>(aElement) )
{
sal_uInt16 nAttr = getIndexByName(aName );
if( nAttr == USHRT_MAX )
@@ -198,7 +198,7 @@ void SAL_CALL SvUnoAttributeContainer::replaceByName(const OUString& aName, cons
void SAL_CALL SvUnoAttributeContainer::insertByName(const OUString& aName, const uno::Any& aElement)
throw( lang::IllegalArgumentException, container::ElementExistException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
{
- auto pData = o3tl::tryGet<xml::AttributeData>(aElement);
+ auto pData = o3tl::tryAccess<xml::AttributeData>(aElement);
if( !pData )
throw lang::IllegalArgumentException();