xmlhelp/source/treeview/tvread.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 75fe4051320ef9b1f4323fa958e8df3db2066882
Author:     Stephan Bergmann <[email protected]>
AuthorDate: Mon May 2 14:28:01 2022 +0200
Commit:     Stephan Bergmann <[email protected]>
CommitDate: Mon May 2 20:02:03 2022 +0200

    Just use Any ctor instead of makeAny in xmlhelp
    
    Change-Id: I1e8d144e8a011868bdd0083bccd90ee80eabbe66
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133701
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <[email protected]>

diff --git a/xmlhelp/source/treeview/tvread.cxx 
b/xmlhelp/source/treeview/tvread.cxx
index 60e207d109ea..1a56533fd27b 100644
--- a/xmlhelp/source/treeview/tvread.cxx
+++ b/xmlhelp/source/treeview/tvread.cxx
@@ -762,7 +762,7 @@ TVChildTarget::getHierAccess( const Reference< 
XMultiServiceFactory >& sProvider
         {
             xHierAccess =
                 Reference< XHierarchicalNameAccess >
-                ( sProvider->createInstanceWithArguments( 
"com.sun.star.configuration.ConfigurationAccess", { 
makeAny(OUString::createFromAscii(file)) }),
+                ( sProvider->createInstanceWithArguments( 
"com.sun.star.configuration.ConfigurationAccess", { 
Any(OUString::createFromAscii(file)) }),
                   UNO_QUERY );
         }
         catch( const css::uno::Exception& )

Reply via email to