summaryrefslogtreecommitdiffstats
path: root/framework/source/uiconfiguration/graphicnameaccess.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/uiconfiguration/graphicnameaccess.cxx')
-rw-r--r--framework/source/uiconfiguration/graphicnameaccess.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/uiconfiguration/graphicnameaccess.cxx b/framework/source/uiconfiguration/graphicnameaccess.cxx
index 809cc88b877c..6812f5604c26 100644
--- a/framework/source/uiconfiguration/graphicnameaccess.cxx
+++ b/framework/source/uiconfiguration/graphicnameaccess.cxx
@@ -45,7 +45,7 @@ uno::Any SAL_CALL GraphicNameAccess::getByName( const OUString& aName )
NameGraphicHashMap::const_iterator pIter = m_aNameToElementMap.find( aName );
if ( pIter == m_aNameToElementMap.end() )
throw container::NoSuchElementException();
- return uno::makeAny( pIter->second );
+ return uno::Any( pIter->second );
}
uno::Sequence< OUString > SAL_CALL GraphicNameAccess::getElementNames()