summaryrefslogtreecommitdiffstats
path: root/forms/source/xforms/datatyperepository.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/xforms/datatyperepository.cxx')
-rw-r--r--forms/source/xforms/datatyperepository.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/forms/source/xforms/datatyperepository.cxx b/forms/source/xforms/datatyperepository.cxx
index 76b9715ee48c..fc446a5a3ecf 100644
--- a/forms/source/xforms/datatyperepository.cxx
+++ b/forms/source/xforms/datatyperepository.cxx
@@ -36,7 +36,6 @@ namespace xforms
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Any;
using ::com::sun::star::uno::Type;
- using ::com::sun::star::uno::makeAny;
using ::com::sun::star::uno::Sequence;
using ::com::sun::star::util::VetoException;
using ::com::sun::star::container::NoSuchElementException;
@@ -166,7 +165,7 @@ namespace xforms
Any SAL_CALL ODataTypeRepository::getByName( const OUString& aName )
{
- return makeAny( getDataType( aName ) );
+ return Any( getDataType( aName ) );
}