diff options
Diffstat (limited to 'basic/source/uno/scriptcont.cxx')
-rw-r--r-- | basic/source/uno/scriptcont.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/uno/scriptcont.cxx b/basic/source/uno/scriptcont.cxx index 07f8935595e5..d78242de70fc 100644 --- a/basic/source/uno/scriptcont.cxx +++ b/basic/source/uno/scriptcont.cxx @@ -673,7 +673,7 @@ bool SfxScriptLibraryContainer::implStorePasswordLibrary( SfxLibrary* pLib, cons throw uno::RuntimeException(); } OUString aMime( "text/xml" ); - xProps->setPropertyValue("MediaType", uno::makeAny( aMime ) ); + xProps->setPropertyValue("MediaType", uno::Any( aMime ) ); // Set encryption key setStreamKey( xSourceStream, pLib->maPassword ); @@ -818,7 +818,7 @@ bool SfxScriptLibraryContainer::implStorePasswordLibrary( SfxLibrary* pLib, cons throw uno::RuntimeException(); } OUString aMime( "text/xml" ); - xProps->setPropertyValue("MediaType", uno::makeAny( aMime ) ); + xProps->setPropertyValue("MediaType", uno::Any( aMime ) ); Reference< XOutputStream > xOut = xSourceStream->getOutputStream(); Reference< XNameContainer > xLib( pLib ); |