diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-05-02 14:25:43 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-05-03 12:10:52 +0200 |
commit | 4d55513852d41ed72e945597b1f8749c14562012 (patch) | |
tree | bedae34037b1588a69841a2725d012ac5f474c70 /xmloff/source/text/XMLTextMasterPageContext.cxx | |
parent | cbc34f69ec6363cd234ad2b1dfe09bfb531238db (diff) |
Just use Any ctor instead of makeAny in xmloff
Change-Id: Ibefb18e5b798ccf1f9d7a5ba1524c9fb1e9bee32
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133700
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'xmloff/source/text/XMLTextMasterPageContext.cxx')
-rw-r--r-- | xmloff/source/text/XMLTextMasterPageContext.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/XMLTextMasterPageContext.cxx b/xmloff/source/text/XMLTextMasterPageContext.cxx index 0e643bede23c..f9584cc81d23 100644 --- a/xmloff/source/text/XMLTextMasterPageContext.cxx +++ b/xmloff/source/text/XMLTextMasterPageContext.cxx @@ -294,7 +294,7 @@ void XMLTextMasterPageContext::Finish( bool bOverwrite ) if ( xPropSetInfo->hasPropertyByName( "Hidden" ) ) { - xPropSet->setPropertyValue( "Hidden", uno::makeAny( IsHidden( ) ) ); + xPropSet->setPropertyValue( "Hidden", uno::Any( IsHidden( ) ) ); } } |